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 | #include "random.hpp" |
Yingdi Yu | 0b537b9 | 2015-08-27 14:39:34 -0700 | [diff] [blame] | 23 | #include "../security/detail/openssl.hpp" |
Alexander Afanasyev | e9fdb80 | 2014-02-05 17:36:51 -0800 | [diff] [blame] | 24 | |
Davide Pesavento | 1cd9f6e | 2016-10-08 00:26:36 +0200 | [diff] [blame] | 25 | #include <random> |
Alexander Afanasyev | 7508867 | 2014-07-14 11:58:30 -0700 | [diff] [blame] | 26 | |
Alexander Afanasyev | e9fdb80 | 2014-02-05 17:36:51 -0800 | [diff] [blame] | 27 | namespace ndn { |
| 28 | namespace random { |
| 29 | |
Alexander Afanasyev | 7508867 | 2014-07-14 11:58:30 -0700 | [diff] [blame] | 30 | uint32_t |
| 31 | generateSecureWord32() |
| 32 | { |
Yingdi Yu | 0b537b9 | 2015-08-27 14:39:34 -0700 | [diff] [blame] | 33 | uint32_t random; |
| 34 | generateSecureBytes(reinterpret_cast<uint8_t*>(&random), sizeof(random)); |
| 35 | return random; |
Alexander Afanasyev | 7508867 | 2014-07-14 11:58:30 -0700 | [diff] [blame] | 36 | } |
| 37 | |
| 38 | uint64_t |
| 39 | generateSecureWord64() |
| 40 | { |
| 41 | uint64_t random; |
Yingdi Yu | 0b537b9 | 2015-08-27 14:39:34 -0700 | [diff] [blame] | 42 | generateSecureBytes(reinterpret_cast<uint8_t*>(&random), sizeof(random)); |
Alexander Afanasyev | 7508867 | 2014-07-14 11:58:30 -0700 | [diff] [blame] | 43 | return random; |
| 44 | } |
| 45 | |
Yingdi Yu | 0b537b9 | 2015-08-27 14:39:34 -0700 | [diff] [blame] | 46 | void |
| 47 | generateSecureBytes(uint8_t* bytes, size_t size) |
| 48 | { |
| 49 | if (RAND_bytes(bytes, size) != 1) { |
| 50 | BOOST_THROW_EXCEPTION(std::runtime_error("Failed to generate random bytes (error code " + |
| 51 | std::to_string(ERR_get_error()) + ")")); |
| 52 | } |
| 53 | } |
| 54 | |
Davide Pesavento | 1cd9f6e | 2016-10-08 00:26:36 +0200 | [diff] [blame] | 55 | static std::mt19937& |
Alexander Afanasyev | 7508867 | 2014-07-14 11:58:30 -0700 | [diff] [blame] | 56 | getRandomGenerator() |
| 57 | { |
Davide Pesavento | 1cd9f6e | 2016-10-08 00:26:36 +0200 | [diff] [blame] | 58 | static std::mt19937 rng{std::random_device{}()}; |
| 59 | return rng; |
Alexander Afanasyev | 7508867 | 2014-07-14 11:58:30 -0700 | [diff] [blame] | 60 | } |
| 61 | |
| 62 | uint32_t |
| 63 | generateWord32() |
| 64 | { |
Davide Pesavento | 1cd9f6e | 2016-10-08 00:26:36 +0200 | [diff] [blame] | 65 | static std::uniform_int_distribution<uint32_t> distribution; |
Alexander Afanasyev | 7508867 | 2014-07-14 11:58:30 -0700 | [diff] [blame] | 66 | return distribution(getRandomGenerator()); |
Alexander Afanasyev | e9fdb80 | 2014-02-05 17:36:51 -0800 | [diff] [blame] | 67 | } |
| 68 | |
Yingdi Yu | 17bc301 | 2014-02-10 17:37:12 -0800 | [diff] [blame] | 69 | uint64_t |
| 70 | generateWord64() |
| 71 | { |
Davide Pesavento | 1cd9f6e | 2016-10-08 00:26:36 +0200 | [diff] [blame] | 72 | static std::uniform_int_distribution<uint64_t> distribution; |
Alexander Afanasyev | 7508867 | 2014-07-14 11:58:30 -0700 | [diff] [blame] | 73 | return distribution(getRandomGenerator()); |
Yingdi Yu | 17bc301 | 2014-02-10 17:37:12 -0800 | [diff] [blame] | 74 | } |
| 75 | |
Alexander Afanasyev | e9fdb80 | 2014-02-05 17:36:51 -0800 | [diff] [blame] | 76 | } // namespace random |
| 77 | } // namespace ndn |