8 #ifndef BOTAN_WHIRLPOOL_H__
9 #define BOTAN_WHIRLPOOL_H__
11 #include <botan/mdx_hash.h>
21 std::string
name()
const override {
return "Whirlpool"; }
25 void clear()
override;
30 void compress_n(
const uint8_t[],
size_t blocks)
override;
31 void copy_out(uint8_t[])
override;
33 static const uint64_t C0[256];
34 static const uint64_t C1[256];
35 static const uint64_t C2[256];
36 static const uint64_t C3[256];
37 static const uint64_t C4[256];
38 static const uint64_t C5[256];
39 static const uint64_t C6[256];
40 static const uint64_t C7[256];
HashFunction * clone() const override
std::string name() const override
size_t output_length() const override
std::vector< T, secure_allocator< T >> secure_vector