blob: 326873d3872e76d4b85e3bde964f9a73790b1ac4 (
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
|
/*
* GOST 34.11
* (C) 2009 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_GOST_3411_H__
#define BOTAN_GOST_3411_H__
#include <botan/hash.h>
#include <botan/gost_28147.h>
namespace Botan {
/**
* GOST 34.11
*/
class BOTAN_DLL GOST_34_11 : public HashFunction
{
public:
std::string name() const override { return "GOST-R-34.11-94" ; }
size_t output_length() const override { return 32; }
size_t hash_block_size() const override { return 32; }
HashFunction* clone() const override { return new GOST_34_11; }
void clear() override;
GOST_34_11();
private:
void compress_n(const byte input[], size_t blocks);
void add_data(const byte[], size_t) override;
void final_result(byte[]) override;
GOST_28147_89 m_cipher;
secure_vector<byte> m_buffer, m_sum, m_hash;
size_t m_position;
u64bit m_count;
};
}
#endif
|