Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Alexander Afanasyev | e9fdb80 | 2014-02-05 17:36:51 -0800 | [diff] [blame] | 2 | /** |
Yingdi Yu | 0b537b9 | 2015-08-27 14:39:34 -0700 | [diff] [blame] | 3 | * Copyright (c) 2013-2016 Regents of the University of California. |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 4 | * |
| 5 | * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 6 | * |
Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 7 | * 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 Afanasyev | e9fdb80 | 2014-02-05 17:36:51 -0800 | [diff] [blame] | 20 | */ |
| 21 | |
| 22 | #ifndef NDN_UTIL_RANDOM_HPP |
| 23 | #define NDN_UTIL_RANDOM_HPP |
| 24 | |
| 25 | #include "../common.hpp" |
| 26 | |
| 27 | namespace ndn { |
| 28 | namespace random { |
| 29 | |
Alexander Afanasyev | 7508867 | 2014-07-14 11:58:30 -0700 | [diff] [blame] | 30 | /** |
| 31 | * @brief Generate a cryptographically secure random integer from the range [0, 2^32) |
| 32 | * |
Yingdi Yu | 0b537b9 | 2015-08-27 14:39:34 -0700 | [diff] [blame] | 33 | * @throw std::runtime_error if generation fails. |
Alexander Afanasyev | 7508867 | 2014-07-14 11:58:30 -0700 | [diff] [blame] | 34 | */ |
| 35 | uint32_t |
| 36 | generateSecureWord32(); |
| 37 | |
| 38 | /** |
| 39 | * @brief Generate a cryptographically secure random integer from the range [0, 2^64) |
| 40 | * |
Yingdi Yu | 0b537b9 | 2015-08-27 14:39:34 -0700 | [diff] [blame] | 41 | * @throw std::runtime_error if generation fails. |
Alexander Afanasyev | 7508867 | 2014-07-14 11:58:30 -0700 | [diff] [blame] | 42 | */ |
| 43 | uint64_t |
| 44 | generateSecureWord64(); |
| 45 | |
| 46 | /** |
Yingdi Yu | 0b537b9 | 2015-08-27 14:39:34 -0700 | [diff] [blame] | 47 | * @brief Fill @p bytes of @p size with cryptographically secure random bytes |
| 48 | * |
| 49 | * @throw std::runtime_error if generation fails. |
| 50 | */ |
| 51 | void |
| 52 | generateSecureBytes(uint8_t* bytes, size_t size); |
| 53 | |
| 54 | /** |
Davide Pesavento | 1cd9f6e | 2016-10-08 00:26:36 +0200 | [diff] [blame] | 55 | * @brief Generate a non-cryptographically-secure random integer in the range [0, 2^32) |
Alexander Afanasyev | 7508867 | 2014-07-14 11:58:30 -0700 | [diff] [blame] | 56 | * |
Davide Pesavento | 1cd9f6e | 2016-10-08 00:26:36 +0200 | [diff] [blame] | 57 | * This version is faster than generateSecureWord32, but it must not be used when |
Alexander Afanasyev | 7508867 | 2014-07-14 11:58:30 -0700 | [diff] [blame] | 58 | * cryptographically secure random integers are needed (e.g., when creating signing or |
| 59 | * encryption keys) |
| 60 | */ |
Alexander Afanasyev | e9fdb80 | 2014-02-05 17:36:51 -0800 | [diff] [blame] | 61 | uint32_t |
| 62 | generateWord32(); |
| 63 | |
Alexander Afanasyev | 7508867 | 2014-07-14 11:58:30 -0700 | [diff] [blame] | 64 | /** |
Davide Pesavento | 1cd9f6e | 2016-10-08 00:26:36 +0200 | [diff] [blame] | 65 | * @brief Generate a non-cryptographically-secure random integer in the range [0, 2^64) |
Alexander Afanasyev | 7508867 | 2014-07-14 11:58:30 -0700 | [diff] [blame] | 66 | * |
Davide Pesavento | 1cd9f6e | 2016-10-08 00:26:36 +0200 | [diff] [blame] | 67 | * This version is faster than generateSecureWord64, but it must not be used when |
Alexander Afanasyev | 7508867 | 2014-07-14 11:58:30 -0700 | [diff] [blame] | 68 | * cryptographically secure random integers are needed (e.g., when creating signing or |
| 69 | * encryption keys) |
| 70 | */ |
Yingdi Yu | 17bc301 | 2014-02-10 17:37:12 -0800 | [diff] [blame] | 71 | uint64_t |
| 72 | generateWord64(); |
| 73 | |
Alexander Afanasyev | e9fdb80 | 2014-02-05 17:36:51 -0800 | [diff] [blame] | 74 | } // namespace random |
| 75 | } // namespace ndn |
| 76 | |
| 77 | #endif // NDN_UTIL_RANDOM_HPP |