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
166
167
168
169
170
171
172
173
174
175
176
177
|
/*
* (C) 2014,2015 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#include "tests.h"
#if defined(BOTAN_HAS_BLOCK_CIPHER)
#include <botan/block_cipher.h>
namespace Botan_Tests {
class Block_Cipher_Tests final : public Text_Based_Test
{
public:
Block_Cipher_Tests() : Text_Based_Test("block", "Key,In,Out", "Iterations") {}
std::vector<std::string> possible_providers(const std::string& algo) override
{
return provider_filter(Botan::BlockCipher::providers(algo));
}
Test::Result run_one_test(const std::string& algo, const VarMap& vars) override
{
const std::vector<uint8_t> key = get_req_bin(vars, "Key");
const std::vector<uint8_t> input = get_req_bin(vars, "In");
const std::vector<uint8_t> expected = get_req_bin(vars, "Out");
const size_t iterations = get_opt_sz(vars, "Iterations", 1);
Test::Result result(algo);
const std::vector<std::string> providers = possible_providers(algo);
if(providers.empty())
{
result.note_missing("block cipher " + algo);
return result;
}
for(auto const& provider_ask : providers)
{
std::unique_ptr<Botan::BlockCipher> cipher(Botan::BlockCipher::create(algo, provider_ask));
if(!cipher)
{
result.test_failure("Cipher " + algo + " supported by " + provider_ask + " but not found");
continue;
}
const std::string provider(cipher->provider());
result.test_is_nonempty("provider", provider);
result.test_eq(provider, cipher->name(), algo);
result.test_gte(provider, cipher->parallelism(), 1);
result.test_gte(provider, cipher->block_size(), 8);
result.test_gte(provider, cipher->parallel_bytes(), cipher->block_size() * cipher->parallelism());
// Test that trying to encrypt or decrypt with now key set throws Botan::Invalid_State
try
{
std::vector<uint8_t> block(cipher->block_size());
cipher->encrypt(block);
result.test_failure("Was able to encrypt without a key being set");
}
catch(Botan::Invalid_State&)
{
result.test_success("Trying to encrypt with no key set fails");
}
try
{
std::vector<uint8_t> block(cipher->block_size());
cipher->decrypt(block);
result.test_failure("Was able to decrypt without a key being set");
}
catch(Botan::Invalid_State&)
{
result.test_success("Trying to encrypt with no key set fails");
}
// Test to make sure clear() resets what we need it to
cipher->set_key(Test::rng().random_vec(cipher->key_spec().maximum_keylength()));
Botan::secure_vector<uint8_t> garbage = Test::rng().random_vec(cipher->block_size());
cipher->encrypt(garbage);
cipher->clear();
cipher->set_key(key);
// Test that clone works and does not affect parent object
std::unique_ptr<Botan::BlockCipher> clone(cipher->clone());
result.confirm("Clone has different pointer", cipher.get() != clone.get());
result.test_eq("Clone has same name", cipher->name(), clone->name());
clone->set_key(Test::rng().random_vec(cipher->maximum_keylength()));
// have called set_key on clone: process input values
std::vector<uint8_t> buf = input;
for(size_t i = 0; i != iterations; ++i)
{
cipher->encrypt(buf);
}
result.test_eq(provider, "encrypt", buf, expected);
// always decrypt expected ciphertext vs what we produced above
buf = expected;
for(size_t i = 0; i != iterations; ++i)
{
cipher->decrypt(buf);
}
result.test_eq(provider, "decrypt", buf, input);
// Now test misaligned buffers
const size_t blocks = input.size() / cipher->block_size();
buf.resize(input.size() + 1);
std::memcpy(buf.data() + 1, input.data(), input.size());
for(size_t i = 0; i != iterations; ++i)
{
cipher->encrypt_n(buf.data() + 1, buf.data() + 1, blocks);
}
result.test_eq(provider.c_str(), "encrypt misaligned",
buf.data() + 1, buf.size() - 1,
expected.data(), expected.size());
// always decrypt expected ciphertext vs what we produced above
std::memcpy(buf.data() + 1, expected.data(), expected.size());
for(size_t i = 0; i != iterations; ++i)
{
cipher->decrypt_n(buf.data() + 1, buf.data() + 1, blocks);
}
result.test_eq(provider.c_str(), "decrypt misaligned",
buf.data() + 1, buf.size() - 1,
input.data(), input.size());
cipher->clear();
try
{
std::vector<uint8_t> block(cipher->block_size());
cipher->encrypt(block);
result.test_failure("Was able to encrypt without a key being set");
}
catch(Botan::Invalid_State&)
{
result.test_success("Trying to encrypt with no key set (after clear) fails");
}
try
{
std::vector<uint8_t> block(cipher->block_size());
cipher->decrypt(block);
result.test_failure("Was able to decrypt without a key being set");
}
catch(Botan::Invalid_State&)
{
result.test_success("Trying to decrypt with no key set (after clear) fails");
}
}
return result;
}
};
BOTAN_REGISTER_TEST("block", Block_Cipher_Tests);
}
#endif
|