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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
/*
* HMAC_DRBG
* (C) 2014,2015,2016 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/hmac_drbg.h>
#include <algorithm>
namespace Botan {
HMAC_DRBG::HMAC_DRBG(const std::string& hmac_hash) :
HMAC_DRBG(hmac_hash, BOTAN_RNG_MAX_OUTPUT_BEFORE_RESEED)
{}
HMAC_DRBG::HMAC_DRBG(const std::string& hmac_hash,
size_t max_bytes_before_reseed) :
Stateful_RNG(max_bytes_before_reseed)
{
const std::string hmac = "HMAC(" + hmac_hash + ")";
m_mac = MessageAuthenticationCode::create(hmac);
if(!m_mac)
{
throw Algorithm_Not_Found(hmac);
}
m_V.resize(m_mac->output_length());
clear();
}
void HMAC_DRBG::clear()
{
for(size_t i = 0; i != m_V.size(); ++i)
m_V[i] = 0x01;
m_mac->set_key(std::vector<byte>(m_mac->output_length(), 0x00));
}
std::string HMAC_DRBG::name() const
{
return "HMAC_DRBG(" + m_mac->name() + ")";
}
void HMAC_DRBG::randomize(byte output[], size_t output_len)
{
randomize_with_input(output, output_len, nullptr, 0);
}
/*
* HMAC_DRBG generation
* See NIST SP800-90A section 10.1.2.5
*/
void HMAC_DRBG::randomize_with_input(byte output[], size_t output_len,
const byte input[], size_t input_len)
{
reseed_check(output_len);
if(input_len > 0)
{
update(input, input_len);
}
while(output_len)
{
const size_t to_copy = std::min(output_len, m_V.size());
m_mac->update(m_V.data(), m_V.size());
m_mac->final(m_V.data());
copy_mem(output, m_V.data(), to_copy);
output += to_copy;
output_len -= to_copy;
}
update(input, input_len);
}
/*
* Reset V and the mac key with new values
* See NIST SP800-90A section 10.1.2.2
*/
void HMAC_DRBG::update(const byte input[], size_t input_len)
{
m_mac->update(m_V);
m_mac->update(0x00);
m_mac->update(input, input_len);
m_mac->set_key(m_mac->final());
m_mac->update(m_V.data(), m_V.size());
m_mac->final(m_V.data());
if(input_len > 0)
{
m_mac->update(m_V);
m_mac->update(0x01);
m_mac->update(input, input_len);
m_mac->set_key(m_mac->final());
m_mac->update(m_V.data(), m_V.size());
m_mac->final(m_V.data());
}
}
void HMAC_DRBG::add_entropy(const byte input[], size_t input_len)
{
update(input, input_len);
}
}
|