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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
|
/*
* Hash Functions
* (C) 2015 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/hash.h>
#include <botan/scan_name.h>
#if defined(BOTAN_HAS_ADLER32)
#include <botan/adler32.h>
#endif
#if defined(BOTAN_HAS_CRC24)
#include <botan/crc24.h>
#endif
#if defined(BOTAN_HAS_CRC32)
#include <botan/crc32.h>
#endif
#if defined(BOTAN_HAS_GOST_34_11)
#include <botan/gost_3411.h>
#endif
#if defined(BOTAN_HAS_KECCAK)
#include <botan/keccak.h>
#endif
#if defined(BOTAN_HAS_MD4)
#include <botan/md4.h>
#endif
#if defined(BOTAN_HAS_MD5)
#include <botan/md5.h>
#endif
#if defined(BOTAN_HAS_RIPEMD_160)
#include <botan/rmd160.h>
#endif
#if defined(BOTAN_HAS_SHA1)
#include <botan/sha160.h>
#endif
#if defined(BOTAN_HAS_SHA2_32)
#include <botan/sha2_32.h>
#endif
#if defined(BOTAN_HAS_SHA2_64)
#include <botan/sha2_64.h>
#endif
#if defined(BOTAN_HAS_SHA3)
#include <botan/sha3.h>
#endif
#if defined(BOTAN_HAS_SKEIN_512)
#include <botan/skein_512.h>
#endif
#if defined(BOTAN_HAS_TIGER)
#include <botan/tiger.h>
#endif
#if defined(BOTAN_HAS_WHIRLPOOL)
#include <botan/whrlpool.h>
#endif
#if defined(BOTAN_HAS_PARALLEL_HASH)
#include <botan/par_hash.h>
#endif
#if defined(BOTAN_HAS_COMB4P)
#include <botan/comb4p.h>
#endif
#if defined(BOTAN_HAS_BLAKE2B)
#include <botan/blake2b.h>
#endif
#if defined(BOTAN_HAS_OPENSSL)
#include <botan/internal/openssl.h>
#endif
namespace Botan {
std::unique_ptr<HashFunction> HashFunction::create(const std::string& algo_spec,
const std::string& provider)
{
const SCAN_Name req(algo_spec);
#if defined(BOTAN_HAS_OPENSSL)
if(provider.empty() || provider == "openssl")
{
if(auto hash = make_openssl_hash(algo_spec))
return hash;
if(!provider.empty())
return nullptr;
}
#endif
if(provider.empty() == false && provider != "base")
return nullptr; // unknown provider
#if defined(BOTAN_HAS_SHA1)
if(req.algo_name() == "SHA-160")
{
return std::unique_ptr<HashFunction>(new SHA_160);
}
#endif
#if defined(BOTAN_HAS_SHA2_32)
if(req.algo_name() == "SHA-224")
{
return std::unique_ptr<HashFunction>(new SHA_224);
}
if(req.algo_name() == "SHA-256")
{
return std::unique_ptr<HashFunction>(new SHA_256);
}
#endif
#if defined(BOTAN_HAS_SHA2_64)
if(req.algo_name() == "SHA-384")
{
return std::unique_ptr<HashFunction>(new SHA_384);
}
if(req.algo_name() == "SHA-512")
{
return std::unique_ptr<HashFunction>(new SHA_512);
}
if(req.algo_name() == "SHA-512-256")
{
return std::unique_ptr<HashFunction>(new SHA_512_256);
}
#endif
#if defined(BOTAN_HAS_RIPEMD_160)
if(req.algo_name() == "RIPEMD-160")
{
return std::unique_ptr<HashFunction>(new RIPEMD_160);
}
#endif
#if defined(BOTAN_HAS_TIGER)
if(req.algo_name() == "Tiger")
{
return std::unique_ptr<HashFunction>(
new Tiger(req.arg_as_integer(0, 24),
req.arg_as_integer(1, 3)));
}
#endif
#if defined(BOTAN_HAS_SKEIN_512)
if(req.algo_name() == "Skein-512")
{
return std::unique_ptr<HashFunction>(
new Skein_512(req.arg_as_integer(0, 512), req.arg(1, "")));
}
#endif
#if defined(BOTAN_HAS_BLAKE2B)
if(req.algo_name() == "Blake2b")
{
return std::unique_ptr<HashFunction>(
new Blake2b(req.arg_as_integer(0, 512)));
}
#endif
#if defined(BOTAN_HAS_KECCAK)
if(req.algo_name() == "Keccak-1600")
{
return std::unique_ptr<HashFunction>(
new Keccak_1600(req.arg_as_integer(0, 512)));
}
#endif
#if defined(BOTAN_HAS_SHA3)
if(req.algo_name() == "SHA-3")
{
return std::unique_ptr<HashFunction>(
new SHA_3(req.arg_as_integer(0, 512)));
}
#endif
#if defined(BOTAN_HAS_WHIRLPOOL)
if(req.algo_name() == "Whirlpool")
{
return std::unique_ptr<HashFunction>(new Whirlpool);
}
#endif
#if defined(BOTAN_HAS_PARALLEL_HASH)
if(req.algo_name() == "Parallel")
{
std::vector<std::unique_ptr<HashFunction>> hashes;
for(size_t i = 0; i != req.arg_count(); ++i)
{
auto h = HashFunction::create(req.arg(i));
if(!h)
{
return nullptr;
}
hashes.push_back(std::move(h));
}
return std::unique_ptr<HashFunction>(new Parallel(hashes));
}
#endif
#if defined(BOTAN_HAS_COMB4P)
if(req.algo_name() == "Comb4p" && req.arg_count() == 2)
{
std::unique_ptr<HashFunction> h1(HashFunction::create(req.arg(0)));
std::unique_ptr<HashFunction> h2(HashFunction::create(req.arg(1)));
if(h1 && h2)
return std::unique_ptr<HashFunction>(new Comb4P(h1.release(), h2.release()));
}
#endif
#if defined(BOTAN_HAS_MD5)
if(req.algo_name() == "MD5")
{
return std::unique_ptr<HashFunction>(new MD5);
}
#endif
#if defined(BOTAN_HAS_MD4)
if(req.algo_name() == "MD4")
{
return std::unique_ptr<HashFunction>(new MD4);
}
#endif
#if defined(BOTAN_HAS_GOST_34_11)
if(req.algo_name() == "GOST-R-34.11-94")
{
return std::unique_ptr<HashFunction>(new GOST_34_11);
}
#endif
#if defined(BOTAN_HAS_ADLER32)
if(req.algo_name() == "Adler32")
{
return std::unique_ptr<HashFunction>(new Adler32);
}
#endif
#if defined(BOTAN_HAS_CRC24)
if(req.algo_name() == "CRC24")
{
return std::unique_ptr<HashFunction>(new CRC24);
}
#endif
#if defined(BOTAN_HAS_CRC32)
if(req.algo_name() == "CRC32")
{
return std::unique_ptr<HashFunction>(new CRC32);
}
#endif
return nullptr;
}
//static
std::unique_ptr<HashFunction>
HashFunction::create_or_throw(const std::string& algo,
const std::string& provider)
{
if(auto hash = HashFunction::create(algo, provider))
{
return hash;
}
throw Lookup_Error("Hash", algo, provider);
}
std::vector<std::string> HashFunction::providers(const std::string& algo_spec)
{
return probe_providers_of<HashFunction>(algo_spec, {"base", "openssl"});
}
}
|