/* * MD4 * (C) 1999-2007 Jack Lloyd * * Botan is released under the Simplified BSD License (see license.txt) */ #ifndef BOTAN_MD4_H__ #define BOTAN_MD4_H__ #include namespace Botan { /** * MD4 */ class BOTAN_DLL MD4 : public MDx_HashFunction { public: std::string name() const { return "MD4"; } size_t output_length() const { return 16; } HashFunction* clone() const { return new MD4; } void clear(); MD4() : MDx_HashFunction(64, false, true), M(16), digest(4) { clear(); } protected: void compress_n(const byte input[], size_t blocks); void copy_out(byte[]); /** * The message buffer, exposed for use by subclasses (x86 asm) */ secure_vector M; /** * The digest value, exposed for use by subclasses (x86 asm) */ secure_vector digest; }; } #endif