Botan 3.11.0
Crypto and TLS for C&
Botan::System_RNG Class Referencefinal

#include <system_rng.h>

Inheritance diagram for Botan::System_RNG:
Botan::RandomNumberGenerator

Public Member Functions

bool accepts_input () const override
void add_entropy (const uint8_t input[], size_t length)
void add_entropy (std::span< const uint8_t > input)
template<typename T>
requires std::is_standard_layout_v<T> && std::is_trivial_v<T>
void add_entropy_T (const T &t)
void clear () override
bool is_seeded () const override
std::string name () const override
uint8_t next_byte ()
uint8_t next_nonzero_byte ()
template<size_t bytes>
std::array< uint8_t, bytes > random_array ()
template<concepts::resizable_byte_buffer T = secure_vector<uint8_t>>
requires std::default_initializable<T>
random_vec (size_t bytes)
void random_vec (std::span< uint8_t > v)
template<concepts::resizable_byte_buffer T>
void random_vec (T &v, size_t bytes)
void randomize (std::span< uint8_t > output)
void randomize (uint8_t output[], size_t length)
void randomize_with_input (std::span< uint8_t > output, std::span< const uint8_t > input)
void randomize_with_input (uint8_t output[], size_t output_len, const uint8_t input[], size_t input_len)
void randomize_with_ts_input (std::span< uint8_t > output)
void randomize_with_ts_input (uint8_t output[], size_t output_len)
size_t reseed (Entropy_Sources &srcs, size_t poll_bits=RandomNumberGenerator::DefaultPollBits, std::chrono::milliseconds=DefaultPollTimeout)
size_t reseed_from (Entropy_Sources &srcs, size_t poll_bits=RandomNumberGenerator::DefaultPollBits)
void reseed_from (RandomNumberGenerator &rng, size_t poll_bits=RandomNumberGenerator::DefaultPollBits)
virtual void reseed_from_rng (RandomNumberGenerator &rng, size_t poll_bits=RandomNumberGenerator::DefaultPollBits)

Static Public Attributes

static constexpr size_t DefaultPollBits = 256
static constexpr auto DefaultPollTimeout = std::chrono::milliseconds(50)
static constexpr size_t DefaultReseedInterval = 1024

Protected Member Functions

void fill_bytes_with_input (std::span< uint8_t > out, std::span< const uint8_t > in) override
virtual size_t reseed_from_sources (Entropy_Sources &srcs, size_t poll_bits=RandomNumberGenerator::DefaultPollBits)

Detailed Description

Definition at line 25 of file system_rng.h.

Member Function Documentation

◆ accepts_input()

bool Botan::System_RNG::accepts_input ( ) const
inlineoverridevirtual

Returns false if it is known that this RNG object is not able to accept externally provided inputs (via add_entropy, randomize_with_input, etc). In this case, any such provided inputs are ignored.

If this function returns true, then inputs may or may not be accepted.

Implements Botan::RandomNumberGenerator.

Definition at line 31 of file system_rng.h.

31{ return system_rng().accepts_input(); }
virtual bool accepts_input() const =0
RandomNumberGenerator & system_rng()

References Botan::RandomNumberGenerator::accepts_input(), and Botan::system_rng().

◆ add_entropy() [1/2]

void Botan::RandomNumberGenerator::add_entropy ( const uint8_t input[],
size_t length )
inlineinherited

Definition at line 100 of file rng.h.

100{ this->add_entropy(std::span(input, length)); }
void add_entropy(std::span< const uint8_t > input)
Definition rng.h:98

References add_entropy().

Referenced by add_entropy().

◆ add_entropy() [2/2]

void Botan::RandomNumberGenerator::add_entropy ( std::span< const uint8_t > input)
inlineinherited

Incorporate some additional data into the RNG state. For example adding nonces or timestamps from a peer's protocol message can help hedge against VM state rollback attacks. A few RNG types do not accept any externally provided input, in which case this function is a no-op.

Parameters
inputa byte array containing the entropy to be added
Exceptions
Exceptionmay throw if the RNG accepts input, but adding the entropy failed.

Definition at line 98 of file rng.h.

98{ this->fill_bytes_with_input({}, input); }
virtual void fill_bytes_with_input(std::span< uint8_t > output, std::span< const uint8_t > input)=0

References fill_bytes_with_input().

Referenced by add_entropy_T(), Botan::ChaCha_RNG::ChaCha_RNG(), Botan::Stateful_RNG::initialize_with(), Botan::Getentropy::poll(), Botan::Intel_Rdseed::poll(), and reseed_from_rng().

◆ add_entropy_T()

template<typename T>
requires std::is_standard_layout_v<T> && std::is_trivial_v<T>
void Botan::RandomNumberGenerator::add_entropy_T ( const T & t)
inlineinherited

Incorporate some additional data into the RNG state.

Definition at line 107 of file rng.h.

107 {
108 this->add_entropy(reinterpret_cast<const uint8_t*>(&t), sizeof(T));
109 }

References add_entropy().

Referenced by Botan::Win32_EntropySource::poll().

◆ clear()

void Botan::System_RNG::clear ( )
inlineoverridevirtual

Clear all internally held values of this RNG

Postcondition
is_seeded() == false if the RNG has an internal state that can be cleared.

Implements Botan::RandomNumberGenerator.

Definition at line 33 of file system_rng.h.

33{ system_rng().clear(); }

References Botan::RandomNumberGenerator::clear(), and Botan::system_rng().

◆ fill_bytes_with_input()

void Botan::System_RNG::fill_bytes_with_input ( std::span< uint8_t > output,
std::span< const uint8_t > input )
inlineoverrideprotectedvirtual

Generic interface to provide entropy to a concrete implementation and to fill a given buffer with random output. Both output and input may be empty and should be ignored in that case. If both buffers are non-empty implementations should typically first apply the input data and then generate random data into output.

This method must be implemented by all RandomNumberGenerator sub-classes.

Parameters
outputByte buffer to write random bytes into. Implementations should not read from this buffer.
inputByte buffer that may contain bytes to be incorporated in the RNG's internal state. Implementations may choose to ignore the bytes in this buffer.

Implements Botan::RandomNumberGenerator.

Definition at line 36 of file system_rng.h.

36 {
38 }
void randomize_with_input(std::span< uint8_t > output, std::span< const uint8_t > input)
Definition rng.h:127

References Botan::RandomNumberGenerator::randomize_with_input(), and Botan::system_rng().

◆ is_seeded()

bool Botan::System_RNG::is_seeded ( ) const
inlineoverridevirtual

Check whether this RNG is seeded.

Returns
true if this RNG was already seeded, false otherwise.

Implements Botan::RandomNumberGenerator.

Definition at line 29 of file system_rng.h.

29{ return system_rng().is_seeded(); }
virtual bool is_seeded() const =0

References Botan::RandomNumberGenerator::is_seeded(), and Botan::system_rng().

◆ name()

std::string Botan::System_RNG::name ( ) const
inlineoverridevirtual
Returns
the name of this RNG type

Implements Botan::RandomNumberGenerator.

Definition at line 27 of file system_rng.h.

27{ return system_rng().name(); }
virtual std::string name() const =0

References Botan::RandomNumberGenerator::name(), and Botan::system_rng().

◆ next_byte()

uint8_t Botan::RandomNumberGenerator::next_byte ( )
inlineinherited

Return a random byte

Returns
random byte
Exceptions
PRNG_Unseededif the RNG fails because it has not enough entropy
Exceptionif the RNG fails

Definition at line 252 of file rng.h.

252 {
253 uint8_t b = 0;
254 this->fill_bytes_with_input(std::span(&b, 1), {});
255 return b;
256 }

References fill_bytes_with_input().

Referenced by next_nonzero_byte(), and Botan::random_prime().

◆ next_nonzero_byte()

uint8_t Botan::RandomNumberGenerator::next_nonzero_byte ( )
inlineinherited
Returns
a random byte that is greater than zero
Exceptions
PRNG_Unseededif the RNG fails because it has not enough entropy
Exceptionif the RNG fails

Definition at line 263 of file rng.h.

263 {
264 uint8_t b = this->next_byte();
265 while(b == 0) {
266 b = this->next_byte();
267 }
268 return b;
269 }

References next_byte().

◆ random_array()

template<size_t bytes>
std::array< uint8_t, bytes > Botan::RandomNumberGenerator::random_array ( )
inlineinherited

Create a std::array of bytes random bytes

Definition at line 240 of file rng.h.

240 {
241 std::array<uint8_t, bytes> result{};
242 random_vec(result);
243 return result;
244 }
void random_vec(std::span< uint8_t > v)
Definition rng.h:204

References random_vec().

◆ random_vec() [1/3]

template<concepts::resizable_byte_buffer T = secure_vector<uint8_t>>
requires std::default_initializable<T>
T Botan::RandomNumberGenerator::random_vec ( size_t bytes)
inlineinherited

Create some byte container type and fill it with some random bytes.

Template Parameters
Tthe desired byte container type (e.g std::vector<uint8_t>)
Parameters
bytesnumber of random bytes to initialize the container with
Returns
a container of type T with bytes random bytes
Exceptions
Exceptionif RNG or memory allocation fails

Definition at line 230 of file rng.h.

230 {
231 T result;
232 random_vec(result, bytes);
233 return result;
234 }

References random_vec().

◆ random_vec() [2/3]

◆ random_vec() [3/3]

template<concepts::resizable_byte_buffer T>
void Botan::RandomNumberGenerator::random_vec ( T & v,
size_t bytes )
inlineinherited

Resize a given byte container to bytes and fill it with random bytes

Template Parameters
Tthe desired byte container type (e.g std::vector<uint8_t>)
Parameters
vthe container to be filled with bytes random bytes
bytesnumber of random bytes to initialize the container with
Exceptions
Exceptionif RNG or memory allocation fails

Definition at line 215 of file rng.h.

215 {
216 v.resize(bytes);
217 random_vec(v);
218 }

References random_vec().

◆ randomize() [1/2]

void Botan::RandomNumberGenerator::randomize ( std::span< uint8_t > output)
inlineinherited

◆ randomize() [2/2]

void Botan::RandomNumberGenerator::randomize ( uint8_t output[],
size_t length )
inlineinherited

Definition at line 77 of file rng.h.

77{ this->randomize(std::span(output, length)); }

References randomize().

Referenced by randomize().

◆ randomize_with_input() [1/2]

void Botan::RandomNumberGenerator::randomize_with_input ( std::span< uint8_t > output,
std::span< const uint8_t > input )
inlineinherited

Incorporate entropy into the RNG state then produce output. Some RNG types implement this using a single operation, default calls add_entropy + randomize in sequence.

Use this to further bind the outputs to your current process/protocol state. For instance if generating a new key for use in a session, include a session ID or other such value. See NIST SP 800-90 A, B, C series for more ideas.

Parameters
outputbuffer to hold the random output
inputentropy buffer to incorporate
Exceptions
PRNG_Unseededif the RNG fails because it has not enough entropy
Exceptionif the RNG fails
Exceptionmay throw if the RNG accepts input, but adding the entropy failed.

Definition at line 127 of file rng.h.

127 {
128 this->fill_bytes_with_input(output, input);
129 }

References fill_bytes_with_input().

Referenced by Botan::System_RNG::fill_bytes_with_input(), and randomize_with_input().

◆ randomize_with_input() [2/2]

void Botan::RandomNumberGenerator::randomize_with_input ( uint8_t output[],
size_t output_len,
const uint8_t input[],
size_t input_len )
inlineinherited

Definition at line 131 of file rng.h.

131 {
132 this->randomize_with_input(std::span(output, output_len), std::span(input, input_len));
133 }

References randomize_with_input().

◆ randomize_with_ts_input() [1/2]

void Botan::RandomNumberGenerator::randomize_with_ts_input ( std::span< uint8_t > output)
inherited

This calls randomize_with_input using some timestamps as extra input.

For a stateful RNG using non-random but potentially unique data the extra input can help protect against problems with fork, VM state rollback, or other cases where somehow an RNG state is duplicated. If both of the duplicated RNG states later incorporate a timestamp (and the timestamps don't themselves repeat), their outputs will diverge.

Parameters
outputbuffer to hold the random output
Exceptions
PRNG_Unseededif the RNG fails because it has not enough entropy
Exceptionif the RNG fails
Exceptionmay throw if the RNG accepts input, but adding the entropy failed.

Definition at line 28 of file rng.cpp.

28 {
29 if(this->accepts_input()) {
30 std::array<uint8_t, 32> additional_input = {0};
31
32#if defined(BOTAN_HAS_OS_UTILS)
33 store_le(std::span{additional_input}.subspan<0, 8>(), OS::get_high_resolution_clock());
34 store_le(std::span{additional_input}.subspan<8, 4>(), OS::get_process_id());
35 constexpr size_t offset = 12;
36#else
37 constexpr size_t offset = 0;
38#endif
39
40#if defined(BOTAN_HAS_SYSTEM_RNG)
41 system_rng().randomize(std::span{additional_input}.subspan<offset>());
42#else
43 BOTAN_UNUSED(offset);
44#endif
45
46 this->fill_bytes_with_input(output, additional_input);
47 } else {
48 this->fill_bytes_with_input(output, {});
49 }
50}
#define BOTAN_UNUSED
Definition assert.h:144
uint64_t BOTAN_TEST_API get_high_resolution_clock()
Definition os_utils.cpp:271
uint32_t BOTAN_TEST_API get_process_id()
Definition os_utils.cpp:76
constexpr auto store_le(ParamTs &&... params)
Definition loadstor.h:736

References accepts_input(), BOTAN_UNUSED, fill_bytes_with_input(), Botan::OS::get_high_resolution_clock(), Botan::OS::get_process_id(), randomize(), Botan::store_le(), and Botan::system_rng().

Referenced by randomize_with_ts_input().

◆ randomize_with_ts_input() [2/2]

void Botan::RandomNumberGenerator::randomize_with_ts_input ( uint8_t output[],
size_t output_len )
inlineinherited

Definition at line 151 of file rng.h.

151 {
152 this->randomize_with_ts_input(std::span(output, output_len));
153 }
void randomize_with_ts_input(std::span< uint8_t > output)
Definition rng.cpp:28

References randomize_with_ts_input().

◆ reseed()

size_t Botan::RandomNumberGenerator::reseed ( Entropy_Sources & srcs,
size_t poll_bits = RandomNumberGenerator::DefaultPollBits,
std::chrono::milliseconds = DefaultPollTimeout )
inlineinherited

Poll provided sources for up to poll_bits bits of entropy. Returns estimate of the number of bits collected.

Sets the seeded state to true if enough entropy was added.

TODO(Botan4) remove this function

Definition at line 296 of file rng.h.

298 {
299 return reseed_from(srcs, poll_bits);
300 }
size_t reseed_from(Entropy_Sources &srcs, size_t poll_bits=RandomNumberGenerator::DefaultPollBits)
Definition rng.h:179

References DefaultPollBits, DefaultPollTimeout, RandomNumberGenerator(), reseed(), and reseed_from().

Referenced by reseed().

◆ reseed_from() [1/2]

size_t Botan::RandomNumberGenerator::reseed_from ( Entropy_Sources & srcs,
size_t poll_bits = RandomNumberGenerator::DefaultPollBits )
inlineinherited

Poll provided sources for up to poll_bits bits of entropy. Returns estimate of the number of bits collected. Sets the seeded state to true if enough entropy was added.

Exceptions
Exceptionif RNG accepts input but reseeding failed.

Definition at line 179 of file rng.h.

179 {
180 return reseed_from_sources(srcs, poll_bits);
181 }
virtual size_t reseed_from_sources(Entropy_Sources &srcs, size_t poll_bits=RandomNumberGenerator::DefaultPollBits)
Definition rng.cpp:52

References DefaultPollBits, and reseed_from_sources().

Referenced by reseed().

◆ reseed_from() [2/2]

void Botan::RandomNumberGenerator::reseed_from ( RandomNumberGenerator & rng,
size_t poll_bits = RandomNumberGenerator::DefaultPollBits )
inlineinherited

Reseed by reading specified bits from the RNG

Sets the seeded state to true if enough entropy was added.

Exceptions
Exceptionif RNG accepts input but reseeding failed.

Definition at line 190 of file rng.h.

190 {
191 return reseed_from_rng(rng, poll_bits);
192 }
virtual void reseed_from_rng(RandomNumberGenerator &rng, size_t poll_bits=RandomNumberGenerator::DefaultPollBits)
Definition rng.cpp:64

References DefaultPollBits, RandomNumberGenerator(), and reseed_from_rng().

◆ reseed_from_rng()

void Botan::RandomNumberGenerator::reseed_from_rng ( RandomNumberGenerator & rng,
size_t poll_bits = RandomNumberGenerator::DefaultPollBits )
virtualinherited

Reseed by reading specified bits from the RNG

Sets the seeded state to true if enough entropy was added.

Exceptions
Exceptionif RNG accepts input but reseeding failed.

Reimplemented in Botan::Stateful_RNG.

Definition at line 64 of file rng.cpp.

64 {
65 if(this->accepts_input()) {
66 this->add_entropy(rng.random_vec(poll_bits / 8));
67 }
68}

References accepts_input(), add_entropy(), random_vec(), and RandomNumberGenerator().

Referenced by reseed_from(), and Botan::Stateful_RNG::reseed_from_rng().

◆ reseed_from_sources()

size_t Botan::RandomNumberGenerator::reseed_from_sources ( Entropy_Sources & srcs,
size_t poll_bits = RandomNumberGenerator::DefaultPollBits )
protectedvirtualinherited

Poll provided sources for up to poll_bits bits of entropy. Returns estimate of the number of bits collected. Sets the seeded state to true if enough entropy was added.

Exceptions
Exceptionif RNG accepts input but reseeding failed.

Reimplemented in Botan::AutoSeeded_RNG, Botan::PKCS11::PKCS11_RNG, and Botan::Stateful_RNG.

Definition at line 52 of file rng.cpp.

52 {
53 if(this->accepts_input()) {
54#if defined(BOTAN_HAS_ENTROPY_SOURCE)
55 return srcs.poll(*this, poll_bits);
56#else
57 BOTAN_UNUSED(srcs, poll_bits);
58#endif
59 }
60
61 return 0;
62}

References accepts_input(), BOTAN_UNUSED, and Botan::Entropy_Sources::poll().

Referenced by reseed_from(), and Botan::Stateful_RNG::reseed_from_sources().

Member Data Documentation

◆ DefaultPollBits

size_t Botan::RandomNumberGenerator::DefaultPollBits = 256
staticconstexprinherited

Number of entropy bits polled for reseeding userspace RNGs like HMAC_DRBG

Definition at line 50 of file rng.h.

Referenced by reseed(), reseed_from(), and reseed_from().

◆ DefaultPollTimeout

auto Botan::RandomNumberGenerator::DefaultPollTimeout = std::chrono::milliseconds(50)
staticconstexprinherited

Default poll timeout

Definition at line 285 of file rng.h.

Referenced by reseed().

◆ DefaultReseedInterval

size_t Botan::RandomNumberGenerator::DefaultReseedInterval = 1024
staticconstexprinherited

Userspace RNGs like HMAC_DRBG will reseed after a specified number of outputs are generated. Set to zero to disable automatic reseeding.

Definition at line 45 of file rng.h.


The documentation for this class was generated from the following file: