/* * Whirlpool * (C) 1999-2007 Jack Lloyd * * Botan is released under the Simplified BSD License (see license.txt) */ #ifndef BOTAN_WHIRLPOOL_H__ #define BOTAN_WHIRLPOOL_H__ #include namespace Botan { /** * Whirlpool */ class BOTAN_DLL Whirlpool : public MDx_HashFunction { public: std::string name() const override { return "Whirlpool"; } size_t output_length() const override { return 64; } HashFunction* clone() const override { return new Whirlpool; } void clear() override; Whirlpool() : MDx_HashFunction(64, true, true, 32), m_M(8), m_digest(8) { clear(); } private: void compress_n(const byte[], size_t blocks) override; void copy_out(byte[]) override; static const u64bit C0[256]; static const u64bit C1[256]; static const u64bit C2[256]; static const u64bit C3[256]; static const u64bit C4[256]; static const u64bit C5[256]; static const u64bit C6[256]; static const u64bit C7[256]; secure_vector m_M, m_digest; }; } #endif