blob: 6dc1b52bfb265c4bae39d3a08fee0687b65ee2fc [file] [log] [blame]
Alexander Afanasyevc169a812014-05-20 20:37:29 -04001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Alexander Afanasyeve9fdb802014-02-05 17:36:51 -08002/**
Alexander Afanasyevc169a812014-05-20 20:37:29 -04003 * Copyright (c) 2013-2014 Regents of the University of California.
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07004 *
5 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07006 *
Alexander Afanasyevc169a812014-05-20 20:37:29 -04007 * ndn-cxx library is free software: you can redistribute it and/or modify it under the
8 * terms of the GNU Lesser General Public License as published by the Free Software
9 * Foundation, either version 3 of the License, or (at your option) any later version.
10 *
11 * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13 * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
14 *
15 * You should have received copies of the GNU General Public License and GNU Lesser
16 * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * See AUTHORS.md for complete list of ndn-cxx authors and contributors.
Alexander Afanasyeve9fdb802014-02-05 17:36:51 -080020 */
21
22#ifndef NDN_UTIL_RANDOM_HPP
23#define NDN_UTIL_RANDOM_HPP
24
25#include "../common.hpp"
26
27namespace ndn {
28namespace random {
29
Alexander Afanasyev75088672014-07-14 11:58:30 -070030/**
31 * @brief Generate a cryptographically secure random integer from the range [0, 2^32)
32 *
33 * This method uses CryptoPP routines
34 */
35uint32_t
36generateSecureWord32();
37
38/**
39 * @brief Generate a cryptographically secure random integer from the range [0, 2^64)
40 *
41 * This method uses CryptoPP routines
42 */
43uint64_t
44generateSecureWord64();
45
46/**
47 * @brief Generate a cryptographically non-secure random integer from the range [0, 2^32)
48 *
49 * This method uses Boost.Random routines
50 *
51 * This version is faster than generateSecureWord32, but it should not be used when
52 * cryptographically secure random integers are needed (e.g., when creating signing or
53 * encryption keys)
54 */
Alexander Afanasyeve9fdb802014-02-05 17:36:51 -080055uint32_t
56generateWord32();
57
Alexander Afanasyev75088672014-07-14 11:58:30 -070058/**
59 * @brief Generate a cryptographically non-secure random integer from range [0, 2^64)
60 *
61 * This method uses Boost.Random routines
62 *
63 * This version is faster than generateSecureWord64, but it should not be used when
64 * cryptographically secure random integers are needed (e.g., when creating signing or
65 * encryption keys)
66 */
Yingdi Yu17bc3012014-02-10 17:37:12 -080067uint64_t
68generateWord64();
69
Alexander Afanasyeve9fdb802014-02-05 17:36:51 -080070} // namespace random
71} // namespace ndn
72
73#endif // NDN_UTIL_RANDOM_HPP