blob: c58b01e72ef13383ff1adcbb24ac71bb33416f82 (
plain)
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
|
/*
* Parallel Hash
* (C) 1999-2009 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/internal/hash_utils.h>
#include <botan/par_hash.h>
#include <botan/parsing.h>
#include <botan/algo_registry.h>
namespace Botan {
BOTAN_REGISTER_NAMED_T(HashFunction, "Parallel", Parallel, Parallel::make);
Parallel* Parallel::make(const Spec& spec)
{
auto& hash_fns = Algo_Registry<HashFunction>::global_registry();
std::vector<std::unique_ptr<HashFunction>> hashes;
for(size_t i = 0; i != spec.arg_count(); ++i)
{
std::unique_ptr<HashFunction> h(hash_fns.make(spec.arg(i)));
if(!h)
return nullptr;
hashes.push_back(std::move(h));
}
Parallel* p = new Parallel;
std::swap(p->hashes, hashes);
return p;
}
void Parallel::add_data(const byte input[], size_t length)
{
for(auto&& hash : hashes)
hash->update(input, length);
}
void Parallel::final_result(byte out[])
{
u32bit offset = 0;
for(auto&& hash : hashes)
{
hash->final(out + offset);
offset += hash->output_length();
}
}
size_t Parallel::output_length() const
{
size_t sum = 0;
for(auto&& hash : hashes)
sum += hash->output_length();
return sum;
}
std::string Parallel::name() const
{
std::vector<std::string> names;
for(auto&& hash : hashes)
names.push_back(hash->name());
return "Parallel(" + string_join(names, ',') + ")";
}
HashFunction* Parallel::clone() const
{
std::vector<HashFunction*> hash_copies;
for(auto&& hash : hashes)
hash_copies.push_back(hash->clone());
return new Parallel(hash_copies);
}
void Parallel::clear()
{
for(auto&& hash : hashes)
hash->clear();
}
Parallel::Parallel(const std::vector<HashFunction*>& in)
{
for(size_t i = 0; i != in.size(); ++i)
{
std::unique_ptr<HashFunction> h(in[i]->clone());
hashes.push_back(std::move(h));
}
}
}
|