blob: 99be4e4c4e9f807d1c48213bf5ba98c18a44bb35 [file] [log] [blame]
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
Alexander Afanasyeve9fdb802014-02-05 17:36:51 -08002/**
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07003 * Copyright (c) 2013-2014, Regents of the University of California.
4 * All rights reserved.
5 *
6 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
7 * See AUTHORS.md for complete list of ndn-cxx authors and contributors.
8 *
9 * This file licensed under New BSD License. See COPYING for detailed information about
10 * ndn-cxx library copyright, permissions, and redistribution restrictions.
Alexander Afanasyeve9fdb802014-02-05 17:36:51 -080011 */
12
13#ifndef NDN_UTIL_RANDOM_HPP
14#define NDN_UTIL_RANDOM_HPP
15
16#include "../common.hpp"
17
18namespace ndn {
19namespace random {
20
21uint32_t
22generateWord32();
23
Yingdi Yu17bc3012014-02-10 17:37:12 -080024uint64_t
25generateWord64();
26
Alexander Afanasyeve9fdb802014-02-05 17:36:51 -080027} // namespace random
28} // namespace ndn
29
30#endif // NDN_UTIL_RANDOM_HPP