blob: 5d17fa564f53712283a84eb06ca7d17e1e612412 (
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
|
/*
* The Skein-512 hash function
* (C) 2009 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/
#ifndef BOTAN_SKEIN_512_H__
#define BOTAN_SKEIN_512_H__
#include <botan/secmem.h>
#include <botan/hash.h>
#include <string>
namespace Botan {
/**
* Skein-512, a SHA-3 candidate
*/
class BOTAN_DLL Skein_512 : public HashFunction
{
public:
/**
* @param output_bits the output size of Skein in bits
* @param personalization is a string that will paramaterize the
* hash output
*/
Skein_512(u32bit output_bits = 512,
const std::string& personalization = "");
HashFunction* clone() const;
std::string name() const;
void clear();
private:
void add_data(const byte input[], u32bit length);
void final_result(byte out[]);
std::string personalization;
u32bit output_bits;
SecureVector<u64bit, 9> H;
SecureVector<u64bit, 3> T;
SecureVector<byte, 64> buffer;
u32bit buf_pos;
};
}
#endif
|