/* * SHA-{384,512} * (C) 1999-2010,2015 Jack Lloyd * * Botan is released under the Simplified BSD License (see license.txt) */ #ifndef BOTAN_SHA_64BIT_H__ #define BOTAN_SHA_64BIT_H__ #include namespace Botan { /** * SHA-384 */ class BOTAN_DLL SHA_384 : public MDx_HashFunction { public: std::string name() const { return "SHA-384"; } size_t output_length() const { return 48; } HashFunction* clone() const { return new SHA_384; } void clear(); SHA_384() : MDx_HashFunction(128, true, true, 16), m_digest(8) { clear(); } private: void compress_n(const byte[], size_t blocks); void copy_out(byte[]); secure_vector m_digest; }; /** * SHA-512 */ class BOTAN_DLL SHA_512 : public MDx_HashFunction { public: std::string name() const { return "SHA-512"; } size_t output_length() const { return 64; } HashFunction* clone() const { return new SHA_512; } void clear(); SHA_512() : MDx_HashFunction(128, true, true, 16), m_digest(8) { clear(); } private: void compress_n(const byte[], size_t blocks); void copy_out(byte[]); secure_vector m_digest; }; /** * SHA-512/256 */ class BOTAN_DLL SHA_512_256 : public MDx_HashFunction { public: std::string name() const { return "SHA-512/256"; } size_t output_length() const { return 32; } HashFunction* clone() const { return new SHA_512_256; } void clear(); SHA_512_256() : MDx_HashFunction(128, true, true, 16), m_digest(8) { clear(); } private: void compress_n(const byte[], size_t blocks); void copy_out(byte[]); secure_vector m_digest; }; } #endif