blob: 68dbe8628af85d41d8406c79b5b9a1817ed34e93 [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/**
Davide Pesavento1cd9f6e2016-10-08 00:26:36 +020055 * @brief Generate a non-cryptographically-secure random integer in the range [0, 2^32)
Alexander Afanasyev75088672014-07-14 11:58:30 -070056 *
Davide Pesavento1cd9f6e2016-10-08 00:26:36 +020057 * This version is faster than generateSecureWord32, but it must not be used when
Alexander Afanasyev75088672014-07-14 11:58:30 -070058 * cryptographically secure random integers are needed (e.g., when creating signing or
59 * encryption keys)
60 */
Alexander Afanasyeve9fdb802014-02-05 17:36:51 -080061uint32_t
62generateWord32();
63
Alexander Afanasyev75088672014-07-14 11:58:30 -070064/**
Davide Pesavento1cd9f6e2016-10-08 00:26:36 +020065 * @brief Generate a non-cryptographically-secure random integer in the range [0, 2^64)
Alexander Afanasyev75088672014-07-14 11:58:30 -070066 *
Davide Pesavento1cd9f6e2016-10-08 00:26:36 +020067 * This version is faster than generateSecureWord64, but it must not be used when
Alexander Afanasyev75088672014-07-14 11:58:30 -070068 * cryptographically secure random integers are needed (e.g., when creating signing or
69 * encryption keys)
70 */
Yingdi Yu17bc3012014-02-10 17:37:12 -080071uint64_t
72generateWord64();
73
Alexander Afanasyeve9fdb802014-02-05 17:36:51 -080074} // namespace random
75} // namespace ndn
76
77#endif // NDN_UTIL_RANDOM_HPP