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
|
/*
* (C) 2014,2015 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#include "tests.h"
#include <botan/lookup.h>
#include <botan/hash.h>
#include <botan/hex.h>
#include <iostream>
#include <fstream>
using namespace Botan;
namespace {
size_t hash_test(const std::string& algo,
const std::string& in_hex,
const std::string& out_hex)
{
size_t fails = 0;
const std::vector<std::string> providers = get_hash_function_providers(algo);
if(providers.empty())
{
std::cout << "Unknown hash '" << algo << "'" << std::endl;
++fails;
}
for(auto provider: providers)
{
std::unique_ptr<HashFunction> hash(get_hash(algo, provider));
if(!hash)
{
std::cout << "Unable to get " << algo << " from " << provider << std::endl;
++fails;
continue;
}
const std::vector<byte> in = hex_decode(in_hex);
hash->update(in);
auto h = hash->final();
if(h != hex_decode_locked(out_hex))
{
std::cout << algo << " " << provider << " got " << hex_encode(h) << " != " << out_hex << std::endl;
++fails;
}
// Test to make sure clear() resets what we need it to
hash->update("some discarded input");
hash->clear();
hash->update(in);
h = hash->final();
if(h != hex_decode_locked(out_hex))
{
std::cout << algo << " " << provider << " got " << hex_encode(h) << " != " << out_hex
<< " (with discarded input)" << std::endl;
++fails;
}
if(in.size() > 1)
{
hash->update(in[0]);
hash->update(&in[1], in.size() - 1);
h = hash->final();
if(h != hex_decode_locked(out_hex))
{
std::cout << algo << " " << provider << " got " << hex_encode(h) << " != " << out_hex
<< " (with offset input)" << std::endl;
++fails;
}
}
}
return fails;
}
}
size_t test_hash()
{
auto test = [](const std::string& input)
{
std::ifstream vec(input);
return run_tests_bb(vec, "Hash", "Out", true,
[](std::map<std::string, std::string> m) -> size_t
{
return hash_test(m["Hash"], m["In"], m["Out"]);
});
};
return run_tests_in_dir(TEST_DATA_DIR "hash", test);
}
|