blob: ce66bb9c9070927a5cec5adf460de58ac79bf64d (
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
|
/**
* Comb4P hash combiner
* (C) 2010 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/
#ifndef BOTAN_COMB4P_H__
#define BOTAN_COMB4P_H__
#include <botan/hash.h>
namespace Botan {
/**
* Combines two hash functions using a Feistel scheme. Described in
* "On the Security of Hash Function Combiners", Anja Lehmann
*/
class Comb4P : public HashFunction
{
public:
Comb4P(HashFunction* h1, HashFunction* h2);
~Comb4P() { delete hash1; delete hash2; }
HashFunction* clone() const
{
return new Comb4P(hash1->clone(), hash2->clone());
}
std::string name() const
{
return "Comb4P(" + hash1->name() + "," + hash2->name() + ")";
}
void clear();
private:
void add_data(const byte input[], u32bit length);
void final_result(byte out[]);
HashFunction* hash1;
HashFunction* hash2;
};
}
#endif
|