blob: f52ae9de1938b17e119bb51d0c3ef8666b3d71ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
/*
* HMAC_DRBG (SP800-90A)
* (C) 2014,2015,2016 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_HMAC_DRBG_H__
#define BOTAN_HMAC_DRBG_H__
#include <botan/rng.h>
#include <botan/mac.h>
namespace Botan {
/**
* HMAC_DRBG from NIST SP800-90A
*/
class BOTAN_DLL HMAC_DRBG final : public Stateful_RNG
{
public:
HMAC_DRBG(const std::string& hmac_hash);
HMAC_DRBG(const std::string& hmac_hash,
size_t max_bytes_before_reseed);
std::string name() const override;
void clear() override;
void randomize(byte output[], size_t output_len) override;
void randomize_with_input(byte output[], size_t output_len,
const byte input[], size_t input_len) override;
void add_entropy(const byte input[], size_t input_len) override;
private:
void update(const byte input[], size_t input_len);
std::unique_ptr<MessageAuthenticationCode> m_mac;
secure_vector<byte> m_V;
};
}
#endif
|