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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
|
/*
* (C) 2009 Jack Lloyd
* (C) 2016 René Korthaus, Sirrix AG
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_TESTS_FIXED_RNG_H__
#define BOTAN_TESTS_FIXED_RNG_H__
#include "tests.h"
#include <deque>
#include <string>
#include <botan/rng.h>
#include <botan/hex.h>
#include <botan/exceptn.h>
namespace Botan_Tests {
/**
* RNG that outputs only a given set of fixed bytes, throws otherwise.
* Useful for test vectors with fixed nonces, where the algorithm consumes only the fixed nonce.
*/
class Fixed_Output_RNG : public Botan::RandomNumberGenerator
{
public:
bool is_seeded() const override { return !m_buf.empty(); }
virtual uint8_t random()
{
if(!is_seeded())
throw Test_Error("Fixed output RNG ran out of bytes, test bug?");
uint8_t out = m_buf.front();
m_buf.pop_front();
return out;
}
size_t reseed(Botan::Entropy_Sources&,
size_t,
std::chrono::milliseconds) override { return 0; }
void randomize(uint8_t out[], size_t len) override
{
for(size_t j = 0; j != len; j++)
out[j] = random();
}
void add_entropy(const uint8_t b[], size_t s) override
{
m_buf.insert(m_buf.end(), b, b + s);
}
std::string name() const override { return "Fixed_Output_RNG"; }
void clear() throw() override {}
explicit Fixed_Output_RNG(const std::vector<uint8_t>& in)
{
m_buf.insert(m_buf.end(), in.begin(), in.end());
}
explicit Fixed_Output_RNG(const std::string& in_str)
{
std::vector<uint8_t> in = Botan::hex_decode(in_str);
m_buf.insert(m_buf.end(), in.begin(), in.end());
}
Fixed_Output_RNG() {}
protected:
size_t remaining() const { return m_buf.size(); }
std::deque<uint8_t> m_buf;
};
/**
* RNG that outputs a given set of fixed bytes for a specific request count, outputs random otherwise.
* Useful for test vectors with fixed nonces, where the algorithm consumes more random than just the fixed nonce.
*/
class Fixed_Output_Position_RNG : public Fixed_Output_RNG
{
public:
bool is_seeded() const override { return !m_buf.empty() || Test::rng().is_seeded(); }
uint8_t random() override
{
if(m_buf.empty())
{
throw Test_Error("Fixed output RNG ran out of bytes, test bug?");
}
uint8_t out = m_buf.front();
m_buf.pop_front();
return out;
}
void randomize(uint8_t out[], size_t len) override
{
++m_requests;
if(m_requests == m_pos)
{ // return fixed output
for(size_t j = 0; j != len; j++)
{
out[j] = random();
}
}
else
{ // return random
Test::rng().randomize(out,len);
}
}
void add_entropy(const uint8_t*, size_t) override
{
throw Botan::Exception("add_entropy() not supported by this RNG, test bug?");
}
std::string name() const override { return "Fixed_Output_Position_RNG"; }
explicit Fixed_Output_Position_RNG(const std::vector<uint8_t>& in, uint32_t pos) :
Fixed_Output_RNG(in),
m_pos(pos)
{
}
explicit Fixed_Output_Position_RNG(const std::string& in_str, uint32_t pos) :
Fixed_Output_RNG(in_str),
m_pos(pos)
{
}
private:
uint32_t m_pos = 0;
uint32_t m_requests = 0;
};
class SeedCapturing_RNG : public Botan::RandomNumberGenerator
{
public:
void randomize(uint8_t[], size_t) override
{ throw Botan::Exception("SeedCapturing_RNG has no output"); }
void add_entropy(const uint8_t input[], size_t len) override
{
m_samples++;
m_seed.insert(m_seed.end(), input, input + len);
}
void clear() override {}
bool is_seeded() const override { return false; }
std::string name() const override { return "SeedCapturing"; }
size_t samples() const { return m_samples; }
const std::vector<uint8_t>& seed_material() const { return m_seed; }
private:
std::vector<uint8_t> m_seed;
size_t m_samples = 0;
};
}
#endif
|