blob: e47b5fb8405ef2b13f0be2f7c5408816a2ec8dda [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/**
Yingdi Yu0b537b92015-08-27 14:39:34 -07003 * Copyright (c) 2013-2016 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 *
Yingdi Yu0b537b92015-08-27 14:39:34 -070033 * @throw std::runtime_error if generation fails.
Alexander Afanasyev75088672014-07-14 11:58:30 -070034 */
35uint32_t
36generateSecureWord32();
37
38/**
39 * @brief Generate a cryptographically secure random integer from the range [0, 2^64)
40 *
Yingdi Yu0b537b92015-08-27 14:39:34 -070041 * @throw std::runtime_error if generation fails.
Alexander Afanasyev75088672014-07-14 11:58:30 -070042 */
43uint64_t
44generateSecureWord64();
45
46/**
Yingdi Yu0b537b92015-08-27 14:39:34 -070047 * @brief Fill @p bytes of @p size with cryptographically secure random bytes
48 *
49 * @throw std::runtime_error if generation fails.
50 */
51void
52generateSecureBytes(uint8_t* bytes, size_t size);
53
54/**
Alexander Afanasyev75088672014-07-14 11:58:30 -070055 * @brief Generate a cryptographically non-secure random integer from the range [0, 2^32)
56 *
57 * This method uses Boost.Random routines
58 *
59 * This version is faster than generateSecureWord32, but it should not be used when
60 * cryptographically secure random integers are needed (e.g., when creating signing or
61 * encryption keys)
62 */
Alexander Afanasyeve9fdb802014-02-05 17:36:51 -080063uint32_t
64generateWord32();
65
Alexander Afanasyev75088672014-07-14 11:58:30 -070066/**
67 * @brief Generate a cryptographically non-secure random integer from range [0, 2^64)
68 *
69 * This method uses Boost.Random routines
70 *
71 * This version is faster than generateSecureWord64, but it should not be used when
72 * cryptographically secure random integers are needed (e.g., when creating signing or
73 * encryption keys)
74 */
Yingdi Yu17bc3012014-02-10 17:37:12 -080075uint64_t
76generateWord64();
77
Alexander Afanasyeve9fdb802014-02-05 17:36:51 -080078} // namespace random
79} // namespace ndn
80
81#endif // NDN_UTIL_RANDOM_HPP