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
|
/*
* (C) 2014,2015 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#include "tests.h"
#include <botan/block_cipher.h>
namespace Botan_Tests {
class Block_Cipher_Tests : public Text_Based_Test
{
public:
Block_Cipher_Tests() : Text_Based_Test(Test::data_dir("block"), {"Key", "In", "Out"}) {}
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");
Test::Result result(algo);
const std::vector<std::string> providers = Botan::BlockCipher::providers(algo);
if(providers.empty())
{
result.note_missing("block cipher " + algo);
return result;
}
for(auto&& provider: providers)
{
std::unique_ptr<Botan::BlockCipher> cipher(Botan::BlockCipher::create(algo, provider));
if(!cipher)
{
result.note_missing(algo + " from " + provider);
continue;
}
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());
cipher->set_key(key);
std::vector<uint8_t> buf = input;
cipher->encrypt(buf);
result.test_eq(provider, "encrypt", buf, expected);
// always decrypt expected ciphertext vs what we produced above
buf = expected;
cipher->decrypt(buf);
result.test_eq(provider, "decrypt", buf, input);
}
return result;
}
};
BOTAN_REGISTER_TEST("block", Block_Cipher_Tests);
}
|