Botan  2.13.0
Crypto and TLS for C++11
Public Member Functions | Static Public Member Functions | Protected Member Functions | List of all members
Botan::HMAC_DRBG Class Referencefinal

#include <hmac_drbg.h>

Inheritance diagram for Botan::HMAC_DRBG:
Botan::Stateful_RNG Botan::RandomNumberGenerator

Public Member Functions

bool accepts_input () const overridefinal
 
void add_entropy (const uint8_t input[], size_t input_len) override
 
template<typename T >
void add_entropy_T (const T &t)
 
void clear () override
 
void force_reseed ()
 
 HMAC_DRBG (std::unique_ptr< MessageAuthenticationCode > prf)
 
 HMAC_DRBG (std::unique_ptr< MessageAuthenticationCode > prf, RandomNumberGenerator &underlying_rng, size_t reseed_interval=BOTAN_RNG_DEFAULT_RESEED_INTERVAL, size_t max_number_of_bytes_per_request=64 *1024)
 
 HMAC_DRBG (std::unique_ptr< MessageAuthenticationCode > prf, Entropy_Sources &entropy_sources, size_t reseed_interval=BOTAN_RNG_DEFAULT_RESEED_INTERVAL, size_t max_number_of_bytes_per_request=64 *1024)
 
 HMAC_DRBG (std::unique_ptr< MessageAuthenticationCode > prf, RandomNumberGenerator &underlying_rng, Entropy_Sources &entropy_sources, size_t reseed_interval=BOTAN_RNG_DEFAULT_RESEED_INTERVAL, size_t max_number_of_bytes_per_request=64 *1024)
 
 HMAC_DRBG (const std::string &hmac_hash)
 
void initialize_with (const uint8_t input[], size_t length)
 
bool is_seeded () const overridefinal
 
size_t max_number_of_bytes_per_request () const override
 
std::string name () const override
 
uint8_t next_byte ()
 
uint8_t next_nonzero_byte ()
 
secure_vector< uint8_t > random_vec (size_t bytes)
 
template<typename Alloc >
void random_vec (std::vector< uint8_t, Alloc > &v, size_t bytes)
 
void randomize (uint8_t output[], size_t output_len) override
 
void randomize_with_input (uint8_t output[], size_t output_len, const uint8_t input[], size_t input_len) override
 
void randomize_with_ts_input (uint8_t output[], size_t output_len) overridefinal
 
size_t reseed (Entropy_Sources &srcs, size_t poll_bits=BOTAN_RNG_RESEED_POLL_BITS, std::chrono::milliseconds poll_timeout=BOTAN_RNG_RESEED_DEFAULT_TIMEOUT) override
 
void reseed_from_rng (RandomNumberGenerator &rng, size_t poll_bits=BOTAN_RNG_RESEED_POLL_BITS) overridefinal
 
size_t reseed_interval () const
 
size_t security_level () const override
 

Static Public Member Functions

static RandomNumberGeneratormake_rng ()
 

Protected Member Functions

void reseed_check ()
 
void reset_reseed_counter ()
 

Detailed Description

HMAC_DRBG from NIST SP800-90A

Definition at line 21 of file hmac_drbg.h.

Constructor & Destructor Documentation

Botan::HMAC_DRBG::HMAC_DRBG ( std::unique_ptr< MessageAuthenticationCode prf)
explicit

Initialize an HMAC_DRBG instance with the given MAC as PRF (normally HMAC)

Automatic reseeding is disabled completely, as it has no access to any source for seed material.

If a fork is detected, the RNG will be unable to reseed itself in response. In this case, an exception will be thrown rather than generating duplicated output.

Definition at line 79 of file hmac_drbg.cpp.

References BOTAN_ASSERT_NONNULL, and clear().

79  :
80  Stateful_RNG(),
81  m_mac(std::move(prf)),
82  m_max_number_of_bytes_per_request(64*1024)
83  {
84  BOTAN_ASSERT_NONNULL(m_mac);
85  clear();
86  }
#define BOTAN_ASSERT_NONNULL(ptr)
Definition: assert.h:107
void clear() override
Definition: hmac_drbg.cpp:88
Botan::HMAC_DRBG::HMAC_DRBG ( std::unique_ptr< MessageAuthenticationCode prf,
RandomNumberGenerator underlying_rng,
size_t  reseed_interval = BOTAN_RNG_DEFAULT_RESEED_INTERVAL,
size_t  max_number_of_bytes_per_request = 64 * 1024 
)

Initialize an HMAC_DRBG instance with the given MAC as PRF (normally HMAC)

Automatic reseeding from underlying_rng will take place after reseed_interval many requests or after a fork was detected.

Parameters
prfMAC to use as a PRF
underlying_rngis a reference to some RNG which will be used to perform the periodic reseeding
reseed_intervalspecifies a limit of how many times the RNG will be called before automatic reseeding is performed (max. 2^24)
max_number_of_bytes_per_requestrequests that are in size higher than max_number_of_bytes_per_request are treated as if multiple single requests of max_number_of_bytes_per_request size had been made. In theory SP 800-90A requires that we reject any request for a DRBG output longer than max_number_of_bytes_per_request. To avoid inconveniencing the caller who wants an output larger than max_number_of_bytes_per_request, instead treat these requests as if multiple requests of max_number_of_bytes_per_request size had been made. NIST requires for HMAC_DRBG that every implementation set a value no more than 2**19 bits (or 64 KiB). Together with reseed_interval = 1 you can enforce that for example every 512 bit automatic reseeding occurs.

Definition at line 33 of file hmac_drbg.cpp.

References BOTAN_ASSERT_NONNULL, and clear().

36  :
37  Stateful_RNG(underlying_rng, reseed_interval),
38  m_mac(std::move(prf)),
39  m_max_number_of_bytes_per_request(max_number_of_bytes_per_request)
40  {
41  BOTAN_ASSERT_NONNULL(m_mac);
42 
44 
45  clear();
46  }
size_t reseed_interval() const
Definition: stateful_rng.h:120
#define BOTAN_ASSERT_NONNULL(ptr)
Definition: assert.h:107
size_t max_number_of_bytes_per_request() const override
Definition: hmac_drbg.h:146
void clear() override
Definition: hmac_drbg.cpp:88
Botan::HMAC_DRBG::HMAC_DRBG ( std::unique_ptr< MessageAuthenticationCode prf,
Entropy_Sources entropy_sources,
size_t  reseed_interval = BOTAN_RNG_DEFAULT_RESEED_INTERVAL,
size_t  max_number_of_bytes_per_request = 64 * 1024 
)

Initialize an HMAC_DRBG instance with the given MAC as PRF (normally HMAC)

Automatic reseeding from entropy_sources will take place after reseed_interval many requests or after a fork was detected.

Parameters
prfMAC to use as a PRF
entropy_sourceswill be polled to perform reseeding periodically
reseed_intervalspecifies a limit of how many times the RNG will be called before automatic reseeding is performed (max. 2^24)
max_number_of_bytes_per_requestrequests that are in size higher than max_number_of_bytes_per_request are treated as if multiple single requests of max_number_of_bytes_per_request size had been made. In theory SP 800-90A requires that we reject any request for a DRBG output longer than max_number_of_bytes_per_request. To avoid inconveniencing the caller who wants an output larger than max_number_of_bytes_per_request, instead treat these requests as if multiple requests of max_number_of_bytes_per_request size had been made. NIST requires for HMAC_DRBG that every implementation set a value no more than 2**19 bits (or 64 KiB). Together with reseed_interval = 1 you can enforce that for example every 512 bit automatic reseeding occurs.

Definition at line 64 of file hmac_drbg.cpp.

References BOTAN_ASSERT_NONNULL, and clear().

67  :
68  Stateful_RNG(entropy_sources, reseed_interval),
69  m_mac(std::move(prf)),
70  m_max_number_of_bytes_per_request(max_number_of_bytes_per_request)
71  {
72  BOTAN_ASSERT_NONNULL(m_mac);
73 
75 
76  clear();
77  }
size_t reseed_interval() const
Definition: stateful_rng.h:120
#define BOTAN_ASSERT_NONNULL(ptr)
Definition: assert.h:107
size_t max_number_of_bytes_per_request() const override
Definition: hmac_drbg.h:146
void clear() override
Definition: hmac_drbg.cpp:88
Botan::HMAC_DRBG::HMAC_DRBG ( std::unique_ptr< MessageAuthenticationCode prf,
RandomNumberGenerator underlying_rng,
Entropy_Sources entropy_sources,
size_t  reseed_interval = BOTAN_RNG_DEFAULT_RESEED_INTERVAL,
size_t  max_number_of_bytes_per_request = 64 * 1024 
)

Initialize an HMAC_DRBG instance with the given MAC as PRF (normally HMAC)

Automatic reseeding from underlying_rng and entropy_sources will take place after reseed_interval many requests or after a fork was detected.

Parameters
prfMAC to use as a PRF
underlying_rngis a reference to some RNG which will be used to perform the periodic reseeding
entropy_sourceswill be polled to perform reseeding periodically
reseed_intervalspecifies a limit of how many times the RNG will be called before automatic reseeding is performed (max. 2^24)
max_number_of_bytes_per_requestrequests that are in size higher than max_number_of_bytes_per_request are treated as if multiple single requests of max_number_of_bytes_per_request size had been made. In theory SP 800-90A requires that we reject any request for a DRBG output longer than max_number_of_bytes_per_request. To avoid inconveniencing the caller who wants an output larger than max_number_of_bytes_per_request, instead treat these requests as if multiple requests of max_number_of_bytes_per_request size had been made. NIST requires for HMAC_DRBG that every implementation set a value no more than 2**19 bits (or 64 KiB). Together with reseed_interval = 1 you can enforce that for example every 512 bit automatic reseeding occurs.

Definition at line 48 of file hmac_drbg.cpp.

References BOTAN_ASSERT_NONNULL, and clear().

52  :
53  Stateful_RNG(underlying_rng, entropy_sources, reseed_interval),
54  m_mac(std::move(prf)),
55  m_max_number_of_bytes_per_request(max_number_of_bytes_per_request)
56  {
57  BOTAN_ASSERT_NONNULL(m_mac);
58 
60 
61  clear();
62  }
size_t reseed_interval() const
Definition: stateful_rng.h:120
#define BOTAN_ASSERT_NONNULL(ptr)
Definition: assert.h:107
size_t max_number_of_bytes_per_request() const override
Definition: hmac_drbg.h:146
void clear() override
Definition: hmac_drbg.cpp:88
Botan::HMAC_DRBG::HMAC_DRBG ( const std::string &  hmac_hash)
inlineexplicit

Constructor taking a string for the hash

Definition at line 125 of file hmac_drbg.h.

125  :
126  Stateful_RNG(),
127  m_mac(MessageAuthenticationCode::create_or_throw("HMAC(" + hmac_hash + ")")),
128  m_max_number_of_bytes_per_request(64 * 1024)
129  {
130  clear();
131  }
static std::unique_ptr< MessageAuthenticationCode > create_or_throw(const std::string &algo_spec, const std::string &provider="")
Definition: mac.cpp:141
void clear() override
Definition: hmac_drbg.cpp:88

Member Function Documentation

bool Botan::Stateful_RNG::accepts_input ( ) const
inlinefinaloverridevirtualinherited

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 78 of file stateful_rng.h.

78 { return true; }
void Botan::HMAC_DRBG::add_entropy ( const uint8_t  input[],
size_t  length 
)
overridevirtual

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 containg the entropy to be added
lengththe length of the byte array in

Implements Botan::RandomNumberGenerator.

Definition at line 174 of file hmac_drbg.cpp.

References Botan::Stateful_RNG::reset_reseed_counter(), and security_level().

175  {
176  update(input, input_len);
177 
178  if(8*input_len >= security_level())
179  {
181  }
182  }
size_t security_level() const override
Definition: hmac_drbg.cpp:184
template<typename T >
void Botan::RandomNumberGenerator::add_entropy_T ( const T t)
inlineinherited

Incorporate some additional data into the RNG state.

Definition at line 68 of file rng.h.

References T.

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

69  {
70  this->add_entropy(reinterpret_cast<const uint8_t*>(&t), sizeof(T));
71  }
virtual void add_entropy(const uint8_t input[], size_t length)=0
fe T
Definition: ge.cpp:37
void Botan::HMAC_DRBG::clear ( )
overridevirtual

Clear all internally held values of this RNG

Postcondition
is_seeded() == false

Implements Botan::RandomNumberGenerator.

Definition at line 88 of file hmac_drbg.cpp.

References Botan::Stateful_RNG::clear().

Referenced by HMAC_DRBG().

89  {
91 
92  const size_t output_length = m_mac->output_length();
93 
94  m_V.resize(output_length);
95  for(size_t i = 0; i != m_V.size(); ++i)
96  m_V[i] = 0x01;
97  m_mac->set_key(std::vector<uint8_t>(output_length, 0x00));
98  }
void clear() override
void Botan::Stateful_RNG::force_reseed ( )
inherited

Mark state as requiring a reseed on next use

Definition at line 23 of file stateful_rng.cpp.

24  {
25  m_reseed_counter = 0;
26  }
void Botan::Stateful_RNG::initialize_with ( const uint8_t  input[],
size_t  length 
)
inherited

Consume this input and mark the RNG as initialized regardless of the length of the input or the current seeded state of the RNG.

Definition at line 33 of file stateful_rng.cpp.

References Botan::RandomNumberGenerator::add_entropy(), Botan::Stateful_RNG::reset_reseed_counter(), and Botan::Stateful_RNG::security_level().

34  {
35  add_entropy(input, len);
36 
37  if(8*len >= security_level())
38  {
40  }
41  }
virtual void add_entropy(const uint8_t input[], size_t length)=0
virtual size_t security_level() const =0
bool Botan::Stateful_RNG::is_seeded ( ) const
finaloverridevirtualinherited

Check whether this RNG is seeded.

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

Implements Botan::RandomNumberGenerator.

Definition at line 28 of file stateful_rng.cpp.

Referenced by Botan::Stateful_RNG::reseed_check().

29  {
30  return m_reseed_counter > 0;
31  }
RandomNumberGenerator * Botan::RandomNumberGenerator::make_rng ( )
staticinherited

Create a seeded and active RNG object for general application use Added in 1.8.0 Use AutoSeeded_RNG instead

Definition at line 69 of file rng.cpp.

70  {
71 #if defined(BOTAN_HAS_AUTO_SEEDING_RNG)
72  return new AutoSeeded_RNG;
73 #else
74  throw Not_Implemented("make_rng failed, no AutoSeeded_RNG in this build");
75 #endif
76  }
size_t Botan::HMAC_DRBG::max_number_of_bytes_per_request ( ) const
inlineoverridevirtual

Some DRBGs have a notion of the maximum number of bytes per request. Longer requests (to randomize) will be treated as multiple requests, and may initiate reseeding multiple times, depending on the values of max_number_of_bytes_per_request and reseed_interval(). This function returns zero if the RNG in question does not have such a notion.

Returns
max number of bytes per request (or zero)

Implements Botan::Stateful_RNG.

Definition at line 146 of file hmac_drbg.h.

147  { return m_max_number_of_bytes_per_request; }
std::string Botan::HMAC_DRBG::name ( ) const
overridevirtual
Returns
the name of this RNG type

Implements Botan::RandomNumberGenerator.

Definition at line 100 of file hmac_drbg.cpp.

101  {
102  return "HMAC_DRBG(" + m_mac->name() + ")";
103  }
uint8_t Botan::RandomNumberGenerator::next_byte ( )
inlineinherited

Return a random byte

Returns
random byte

Definition at line 159 of file rng.h.

Referenced by Botan::random_prime().

160  {
161  uint8_t b;
162  this->randomize(&b, 1);
163  return b;
164  }
virtual void randomize(uint8_t output[], size_t length)=0
uint8_t Botan::RandomNumberGenerator::next_nonzero_byte ( )
inlineinherited
Returns
a random byte that is greater than zero

Definition at line 169 of file rng.h.

Referenced by Botan::EME_PKCS1v15::pad().

170  {
171  uint8_t b = this->next_byte();
172  while(b == 0)
173  b = this->next_byte();
174  return b;
175  }
secure_vector<uint8_t> Botan::RandomNumberGenerator::random_vec ( size_t  bytes)
inlineinherited
template<typename Alloc >
void Botan::RandomNumberGenerator::random_vec ( std::vector< uint8_t, Alloc > &  v,
size_t  bytes 
)
inlineinherited

Definition at line 149 of file rng.h.

150  {
151  v.resize(bytes);
152  this->randomize(v.data(), v.size());
153  }
virtual void randomize(uint8_t output[], size_t length)=0
void Botan::HMAC_DRBG::randomize ( uint8_t  output[],
size_t  length 
)
overridevirtual

Randomize a byte array.

Parameters
outputthe byte array to hold the random output.
lengththe length of the byte array output in bytes.

Implements Botan::RandomNumberGenerator.

Definition at line 105 of file hmac_drbg.cpp.

References randomize_with_input().

106  {
107  randomize_with_input(output, output_len, nullptr, 0);
108  }
void randomize_with_input(uint8_t output[], size_t output_len, const uint8_t input[], size_t input_len) override
Definition: hmac_drbg.cpp:114
void Botan::HMAC_DRBG::randomize_with_input ( uint8_t  output[],
size_t  output_len,
const uint8_t  input[],
size_t  input_len 
)
overridevirtual

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
output_lensize of the output buffer in bytes
inputentropy buffer to incorporate
input_lensize of the input buffer in bytes

Reimplemented from Botan::RandomNumberGenerator.

Definition at line 114 of file hmac_drbg.cpp.

References Botan::copy_mem(), and Botan::Stateful_RNG::reseed_check().

Referenced by randomize().

116  {
117  while(output_len > 0)
118  {
119  size_t this_req = std::min(m_max_number_of_bytes_per_request, output_len);
120  output_len -= this_req;
121 
122  reseed_check();
123 
124  if(input_len > 0)
125  {
126  update(input, input_len);
127  }
128 
129  while(this_req)
130  {
131  const size_t to_copy = std::min(this_req, m_V.size());
132  m_mac->update(m_V.data(), m_V.size());
133  m_mac->final(m_V.data());
134  copy_mem(output, m_V.data(), to_copy);
135 
136  output += to_copy;
137  this_req -= to_copy;
138  }
139 
140  update(input, input_len);
141  }
142 
143  }
void copy_mem(T *out, const T *in, size_t n)
Definition: mem_ops.h:132
void Botan::Stateful_RNG::randomize_with_ts_input ( uint8_t  output[],
size_t  output_len 
)
finaloverridevirtualinherited

Overrides default implementation and also includes the current process ID and the reseed counter.

Reimplemented from Botan::RandomNumberGenerator.

Definition at line 43 of file stateful_rng.cpp.

References Botan::RDRAND_RNG::available(), Botan::OS::get_high_resolution_clock(), Botan::OS::get_system_timestamp_ns(), Botan::RDRAND_RNG::randomize(), Botan::RandomNumberGenerator::randomize_with_input(), and Botan::store_le().

44  {
45  uint8_t additional_input[24] = { 0 };
46 
47  store_le(OS::get_high_resolution_clock(), additional_input);
48 
49 #if defined(BOTAN_HAS_RDRAND_RNG)
51  {
52  RDRAND_RNG rdrand;
53  rdrand.randomize(additional_input + 8, sizeof(additional_input) - 8);
54  }
55  else
56 #endif
57  {
58  store_le(OS::get_system_timestamp_ns(), additional_input + 8);
59  store_le(m_last_pid, additional_input + 16);
60  store_le(static_cast<uint32_t>(m_reseed_counter), additional_input + 20);
61  }
62 
63  randomize_with_input(output, output_len, additional_input, sizeof(additional_input));
64  }
virtual void randomize_with_input(uint8_t output[], size_t output_len, const uint8_t input[], size_t input_len)
Definition: rng.cpp:38
static bool available()
Definition: rdrand_rng.cpp:85
uint64_t BOTAN_TEST_API get_system_timestamp_ns()
Definition: os_utils.cpp:293
void store_le(uint16_t in, uint8_t out[2])
Definition: loadstor.h:454
uint64_t BOTAN_TEST_API get_high_resolution_clock()
Definition: os_utils.cpp:241
size_t Botan::Stateful_RNG::reseed ( Entropy_Sources srcs,
size_t  poll_bits = BOTAN_RNG_RESEED_POLL_BITS,
std::chrono::milliseconds  poll_timeout = BOTAN_RNG_RESEED_DEFAULT_TIMEOUT 
)
overridevirtualinherited

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

Reimplemented from Botan::RandomNumberGenerator.

Definition at line 66 of file stateful_rng.cpp.

References Botan::RandomNumberGenerator::reseed(), Botan::Stateful_RNG::reset_reseed_counter(), and Botan::Stateful_RNG::security_level().

Referenced by Botan::Stateful_RNG::reseed_check().

69  {
70  size_t bits_collected = RandomNumberGenerator::reseed(srcs, poll_bits, poll_timeout);
71 
72  if(bits_collected >= security_level())
73  {
75  }
76 
77  return bits_collected;
78  }
virtual size_t security_level() const =0
virtual size_t reseed(Entropy_Sources &srcs, size_t poll_bits=BOTAN_RNG_RESEED_POLL_BITS, std::chrono::milliseconds poll_timeout=BOTAN_RNG_RESEED_DEFAULT_TIMEOUT)
Definition: rng.cpp:45
void Botan::Stateful_RNG::reseed_check ( )
protectedinherited

Definition at line 90 of file stateful_rng.cpp.

References BOTAN_ASSERT, Botan::OS::get_process_id(), Botan::Stateful_RNG::is_seeded(), Botan::RandomNumberGenerator::name(), Botan::Stateful_RNG::reseed(), Botan::Stateful_RNG::reseed_from_rng(), and Botan::Stateful_RNG::security_level().

Referenced by Botan::ChaCha_RNG::randomize_with_input(), and randomize_with_input().

91  {
92  const uint32_t cur_pid = OS::get_process_id();
93 
94  const bool fork_detected = (m_last_pid > 0) && (cur_pid != m_last_pid);
95 
96  if(is_seeded() == false ||
97  fork_detected ||
98  (m_reseed_interval > 0 && m_reseed_counter >= m_reseed_interval))
99  {
100  m_reseed_counter = 0;
101  m_last_pid = cur_pid;
102 
103  if(m_underlying_rng)
104  {
105  reseed_from_rng(*m_underlying_rng, security_level());
106  }
107 
108  if(m_entropy_sources)
109  {
110  reseed(*m_entropy_sources, security_level());
111  }
112 
113  if(!is_seeded())
114  {
115  if(fork_detected)
116  throw Invalid_State("Detected use of fork but cannot reseed DRBG");
117  else
118  throw PRNG_Unseeded(name());
119  }
120  }
121  else
122  {
123  BOTAN_ASSERT(m_reseed_counter != 0, "RNG is seeded");
124  m_reseed_counter += 1;
125  }
126  }
uint32_t BOTAN_TEST_API get_process_id()
Definition: os_utils.cpp:96
virtual size_t security_level() const =0
#define BOTAN_ASSERT(expr, assertion_made)
Definition: assert.h:55
void reseed_from_rng(RandomNumberGenerator &rng, size_t poll_bits=BOTAN_RNG_RESEED_POLL_BITS) overridefinal
virtual std::string name() const =0
bool is_seeded() const overridefinal
size_t reseed(Entropy_Sources &srcs, size_t poll_bits=BOTAN_RNG_RESEED_POLL_BITS, std::chrono::milliseconds poll_timeout=BOTAN_RNG_RESEED_DEFAULT_TIMEOUT) override
void Botan::Stateful_RNG::reseed_from_rng ( RandomNumberGenerator rng,
size_t  poll_bits = BOTAN_RNG_RESEED_POLL_BITS 
)
finaloverridevirtualinherited

Reseed by reading specified bits from the RNG

Reimplemented from Botan::RandomNumberGenerator.

Definition at line 80 of file stateful_rng.cpp.

References Botan::RandomNumberGenerator::reseed_from_rng(), Botan::Stateful_RNG::reset_reseed_counter(), and Botan::Stateful_RNG::security_level().

Referenced by Botan::Stateful_RNG::reseed_check().

81  {
83 
84  if(poll_bits >= security_level())
85  {
87  }
88  }
virtual size_t security_level() const =0
virtual void reseed_from_rng(RandomNumberGenerator &rng, size_t poll_bits=BOTAN_RNG_RESEED_POLL_BITS)
Definition: rng.cpp:59
size_t Botan::Stateful_RNG::reseed_interval ( ) const
inlineinherited

Definition at line 120 of file stateful_rng.h.

120 { return m_reseed_interval; }
void Botan::Stateful_RNG::reset_reseed_counter ( )
inlineprotectedinherited

Called by a subclass to notify that a reseed has been successfully performed.

Definition at line 131 of file stateful_rng.h.

Referenced by Botan::ChaCha_RNG::add_entropy(), add_entropy(), Botan::Stateful_RNG::initialize_with(), Botan::Stateful_RNG::reseed(), and Botan::Stateful_RNG::reseed_from_rng().

131 { m_reseed_counter = 1; }
size_t Botan::HMAC_DRBG::security_level ( ) const
overridevirtual
Returns
intended security level of this DRBG

Implements Botan::Stateful_RNG.

Definition at line 184 of file hmac_drbg.cpp.

Referenced by add_entropy().

185  {
186  // security strength of the hash function
187  // for pre-image resistance (see NIST SP 800-57)
188  // SHA-160: 128 bits, SHA-224, SHA-512/224: 192 bits,
189  // SHA-256, SHA-512/256, SHA-384, SHA-512: >= 256 bits
190  // NIST SP 800-90A only supports up to 256 bits though
191 
192  const size_t output_length = m_mac->output_length();
193 
194  if(output_length < 32)
195  {
196  return (output_length - 4) * 8;
197  }
198  else
199  {
200  return 32 * 8;
201  }
202  }

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