// blake2.h - written and placed in the public domain by Jeffrey Walton // and Zooko Wilcox-O'Hearn. Based on Aumasson, Neves, // Wilcox-O'Hearn and Winnerlein's reference BLAKE2 // implementation at http://github.com/BLAKE2/BLAKE2. /// \file blake2.h /// \brief Classes for BLAKE2b and BLAKE2s message digests and keyed message digests /// \details This implementation follows Aumasson, Neves, Wilcox-O'Hearn and Winnerlein's /// BLAKE2: simpler, smaller, fast as MD5 (2013.01.29). /// Static algorithm name return either "BLAKE2b" or "BLAKE2s". An object algorithm name follows /// the naming described in RFC 7693, The /// BLAKE2 Cryptographic Hash and Message Authentication Code (MAC). /// \details The library provides specialized SSE4, NEON and PowerPC version of the BLAKE2 compression /// function. For best results under ARM NEON, specify both an architecture and cpu. /// \since C++ since Crypto++ 5.6.4, SSE since Crypto++ 5.6.4, NEON since Crypto++ 6.0, /// Power8 since Crypto++ 8.0 #ifndef CRYPTOPP_BLAKE2_H #define CRYPTOPP_BLAKE2_H #include "cryptlib.h" #include "secblock.h" #include "seckey.h" NAMESPACE_BEGIN(CryptoPP) /// \brief BLAKE2s hash information /// \since Crypto++ 5.6.4 struct BLAKE2s_Info : public VariableKeyLength<32,0,32,1,SimpleKeyingInterface::NOT_RESYNCHRONIZABLE> { typedef VariableKeyLength<32,0,32,1,SimpleKeyingInterface::NOT_RESYNCHRONIZABLE> KeyBase; CRYPTOPP_CONSTANT(MIN_KEYLENGTH = KeyBase::MIN_KEYLENGTH) CRYPTOPP_CONSTANT(MAX_KEYLENGTH = KeyBase::MAX_KEYLENGTH) CRYPTOPP_CONSTANT(DEFAULT_KEYLENGTH = KeyBase::DEFAULT_KEYLENGTH) CRYPTOPP_CONSTANT(BLOCKSIZE = 64) CRYPTOPP_CONSTANT(DIGESTSIZE = 32) CRYPTOPP_CONSTANT(SALTSIZE = 8) CRYPTOPP_CONSTANT(PERSONALIZATIONSIZE = 8) CRYPTOPP_STATIC_CONSTEXPR const char* StaticAlgorithmName() {return "BLAKE2s";} }; /// \brief BLAKE2b hash information /// \since Crypto++ 5.6.4 struct BLAKE2b_Info : public VariableKeyLength<64,0,64,1,SimpleKeyingInterface::NOT_RESYNCHRONIZABLE> { typedef VariableKeyLength<64,0,64,1,SimpleKeyingInterface::NOT_RESYNCHRONIZABLE> KeyBase; CRYPTOPP_CONSTANT(MIN_KEYLENGTH = KeyBase::MIN_KEYLENGTH) CRYPTOPP_CONSTANT(MAX_KEYLENGTH = KeyBase::MAX_KEYLENGTH) CRYPTOPP_CONSTANT(DEFAULT_KEYLENGTH = KeyBase::DEFAULT_KEYLENGTH) CRYPTOPP_CONSTANT(BLOCKSIZE = 128) CRYPTOPP_CONSTANT(DIGESTSIZE = 64) CRYPTOPP_CONSTANT(SALTSIZE = 16) CRYPTOPP_CONSTANT(PERSONALIZATIONSIZE = 16) CRYPTOPP_STATIC_CONSTEXPR const char* StaticAlgorithmName() {return "BLAKE2b";} }; /// \brief BLAKE2s parameter block struct CRYPTOPP_NO_VTABLE BLAKE2s_ParameterBlock { CRYPTOPP_CONSTANT(SALTSIZE = BLAKE2s_Info::SALTSIZE) CRYPTOPP_CONSTANT(DIGESTSIZE = BLAKE2s_Info::DIGESTSIZE) CRYPTOPP_CONSTANT(PERSONALIZATIONSIZE = BLAKE2s_Info::PERSONALIZATIONSIZE) BLAKE2s_ParameterBlock() { memset(this, 0x00, sizeof(*this)); digestLength = DIGESTSIZE; fanout = depth = 1; } BLAKE2s_ParameterBlock(size_t digestSize) { CRYPTOPP_ASSERT(digestSize <= DIGESTSIZE); memset(this, 0x00, sizeof(*this)); digestLength = (byte)digestSize; fanout = depth = 1; } BLAKE2s_ParameterBlock(size_t digestSize, size_t keyLength, const byte* salt, size_t saltLength, const byte* personalization, size_t personalizationLength); byte digestLength; byte keyLength, fanout, depth; byte leafLength[4]; byte nodeOffset[6]; byte nodeDepth, innerLength; byte salt[SALTSIZE]; byte personalization[PERSONALIZATIONSIZE]; }; /// \brief BLAKE2b parameter block struct CRYPTOPP_NO_VTABLE BLAKE2b_ParameterBlock { CRYPTOPP_CONSTANT(SALTSIZE = BLAKE2b_Info::SALTSIZE) CRYPTOPP_CONSTANT(DIGESTSIZE = BLAKE2b_Info::DIGESTSIZE) CRYPTOPP_CONSTANT(PERSONALIZATIONSIZE = BLAKE2b_Info::PERSONALIZATIONSIZE) BLAKE2b_ParameterBlock() { memset(this, 0x00, sizeof(*this)); digestLength = DIGESTSIZE; fanout = depth = 1; } BLAKE2b_ParameterBlock(size_t digestSize) { CRYPTOPP_ASSERT(digestSize <= DIGESTSIZE); memset(this, 0x00, sizeof(*this)); digestLength = (byte)digestSize; fanout = depth = 1; } BLAKE2b_ParameterBlock(size_t digestSize, size_t keyLength, const byte* salt, size_t saltLength, const byte* personalization, size_t personalizationLength); byte digestLength; byte keyLength, fanout, depth; byte leafLength[4]; byte nodeOffset[8]; byte nodeDepth, innerLength, rfu[14]; byte salt[SALTSIZE]; byte personalization[PERSONALIZATIONSIZE]; }; /// \brief BLAKE2s state information /// \since Crypto++ 5.6.4 struct CRYPTOPP_NO_VTABLE BLAKE2s_State { BLAKE2s_State() { // Set all members except scratch buffer[] h[0]=h[1]=h[2]=h[3]=h[4]=h[5]=h[6]=h[7] = 0; tf[0]=tf[1]=tf[2]=tf[3] = 0; length = 0; } // SSE4, Power7 and NEON depend upon t[] and f[] being side-by-side word32 h[8], tf[4]; // t[2], f[2]; byte buffer[BLAKE2s_Info::BLOCKSIZE]; size_t length; }; /// \brief BLAKE2b state information /// \since Crypto++ 5.6.4 struct CRYPTOPP_NO_VTABLE BLAKE2b_State { BLAKE2b_State() { // Set all members except scratch buffer[] h[0]=h[1]=h[2]=h[3]=h[4]=h[5]=h[6]=h[7] = 0; tf[0]=tf[1]=tf[2]=tf[3] = 0; length = 0; } // SSE4, Power8 and NEON depend upon t[] and f[] being side-by-side word64 h[8], tf[4]; // t[2], f[2]; byte buffer[BLAKE2b_Info::BLOCKSIZE]; size_t length; }; /// \brief The BLAKE2s cryptographic hash function /// \details BLAKE2s can function as both a hash and keyed hash. If you want only the hash, /// then use the BLAKE2s constructor that accepts no parameters or digest size. If you /// want a keyed hash, then use the constructor that accpts the key as a parameter. /// Once a key and digest size are selected, its effectively immutable. The Restart() /// method that accepts a ParameterBlock does not allow you to change it. /// \sa Aumasson, Neves, Wilcox-O'Hearn and Winnerlein's /// BLAKE2: simpler, smaller, fast as MD5 (2013.01.29). /// \since C++ since Crypto++ 5.6.4, SSE since Crypto++ 5.6.4, NEON since Crypto++ 6.0, /// Power8 since Crypto++ 8.0 class BLAKE2s : public SimpleKeyingInterfaceImpl { public: CRYPTOPP_CONSTANT(DEFAULT_KEYLENGTH = BLAKE2s_Info::DEFAULT_KEYLENGTH) CRYPTOPP_CONSTANT(MIN_KEYLENGTH = BLAKE2s_Info::MIN_KEYLENGTH) CRYPTOPP_CONSTANT(MAX_KEYLENGTH = BLAKE2s_Info::MAX_KEYLENGTH) CRYPTOPP_CONSTANT(DIGESTSIZE = BLAKE2s_Info::DIGESTSIZE) CRYPTOPP_CONSTANT(BLOCKSIZE = BLAKE2s_Info::BLOCKSIZE) CRYPTOPP_CONSTANT(SALTSIZE = BLAKE2s_Info::SALTSIZE) CRYPTOPP_CONSTANT(PERSONALIZATIONSIZE = BLAKE2s_Info::PERSONALIZATIONSIZE) typedef BLAKE2s_State State; typedef BLAKE2s_ParameterBlock ParameterBlock; typedef SecBlock > AlignedState; typedef SecBlock > AlignedParameterBlock; CRYPTOPP_STATIC_CONSTEXPR const char* StaticAlgorithmName() {return "BLAKE2s";} virtual ~BLAKE2s() {} /// \brief Construct a BLAKE2s hash /// \param digestSize the digest size, in bytes /// \param treeMode flag indicating tree mode BLAKE2s(bool treeMode=false, unsigned int digestSize = DIGESTSIZE); /// \brief Construct a BLAKE2s hash /// \param key a byte array used to key the cipher /// \param keyLength the size of the byte array /// \param salt a byte array used as salt /// \param saltLength the size of the byte array /// \param personalization a byte array used as prsonalization string /// \param personalizationLength the size of the byte array /// \param treeMode flag indicating tree mode /// \param digestSize the digest size, in bytes BLAKE2s(const byte *key, size_t keyLength, const byte* salt = NULLPTR, size_t saltLength = 0, const byte* personalization = NULLPTR, size_t personalizationLength = 0, bool treeMode=false, unsigned int digestSize = DIGESTSIZE); /// \brief Retrieve the object's name /// \returns the object's algorithm name following RFC 7693 /// \details Object algorithm name follows the naming described in /// RFC 7693, The BLAKE2 Cryptographic Hash and /// Message Authentication Code (MAC). For example, "BLAKE2b-512" and "BLAKE2s-256". std::string AlgorithmName() const {return std::string(BLAKE2s_Info::StaticAlgorithmName()) + "-" + IntToString(this->DigestSize()*8);} unsigned int DigestSize() const {return m_digestSize;} unsigned int OptimalDataAlignment() const {return (CRYPTOPP_BOOL_ALIGN16 ? 16 : GetAlignmentOf());} void Update(const byte *input, size_t length); void Restart(); /// \brief Restart a hash with parameter block and counter /// \param block parameter block /// \param counter counter array /// \details Parameter block is persisted across calls to Restart(). void Restart(const BLAKE2s_ParameterBlock& block, const word32 counter[2]); /// \brief Set tree mode /// \param mode the new tree mode /// \details BLAKE2 has two finalization flags, called State::f[0] and State::f[1]. /// If treeMode=false (default), then State::f[1] is never set. If /// treeMode=true, then State::f[1] is set when State::f[0] is set. /// Tree mode is persisted across calls to Restart(). void SetTreeMode(bool mode) {m_treeMode=mode;} /// \brief Get tree mode /// \returns the current tree mode /// \details Tree mode is persisted across calls to Restart(). bool GetTreeMode() const {return m_treeMode;} void TruncatedFinal(byte *hash, size_t size); std::string AlgorithmProvider() const; protected: // Operates on state buffer and/or input. Must be BLOCKSIZE, final block will pad with 0's. void Compress(const byte *input); inline void IncrementCounter(size_t count=BLOCKSIZE); void UncheckedSetKey(const byte* key, unsigned int length, const CryptoPP::NameValuePairs& params); private: AlignedState m_state; AlignedParameterBlock m_block; AlignedSecByteBlock m_key; word32 m_digestSize; bool m_treeMode; }; /// \brief The BLAKE2b cryptographic hash function /// \details BLAKE2b can function as both a hash and keyed hash. If you want only the hash, /// then use the BLAKE2b constructor that accepts no parameters or digest size. If you /// want a keyed hash, then use the constructor that accpts the key as a parameter. /// Once a key and digest size are selected, its effectively immutable. The Restart() /// method that accepts a ParameterBlock does not allow you to change it. /// \sa Aumasson, Neves, Wilcox-O'Hearn and Winnerlein's /// BLAKE2: simpler, smaller, fast as MD5 (2013.01.29). /// \since C++ since Crypto++ 5.6.4, SSE since Crypto++ 5.6.4, NEON since Crypto++ 6.0, /// Power8 since Crypto++ 8.0 class BLAKE2b : public SimpleKeyingInterfaceImpl { public: CRYPTOPP_CONSTANT(DEFAULT_KEYLENGTH = BLAKE2b_Info::DEFAULT_KEYLENGTH) CRYPTOPP_CONSTANT(MIN_KEYLENGTH = BLAKE2b_Info::MIN_KEYLENGTH) CRYPTOPP_CONSTANT(MAX_KEYLENGTH = BLAKE2b_Info::MAX_KEYLENGTH) CRYPTOPP_CONSTANT(DIGESTSIZE = BLAKE2b_Info::DIGESTSIZE) CRYPTOPP_CONSTANT(BLOCKSIZE = BLAKE2b_Info::BLOCKSIZE) CRYPTOPP_CONSTANT(SALTSIZE = BLAKE2b_Info::SALTSIZE) CRYPTOPP_CONSTANT(PERSONALIZATIONSIZE = BLAKE2b_Info::PERSONALIZATIONSIZE) typedef BLAKE2b_State State; typedef BLAKE2b_ParameterBlock ParameterBlock; typedef SecBlock > AlignedState; typedef SecBlock > AlignedParameterBlock; CRYPTOPP_STATIC_CONSTEXPR const char* StaticAlgorithmName() {return "BLAKE2b";} virtual ~BLAKE2b() {} /// \brief Construct a BLAKE2b hash /// \param digestSize the digest size, in bytes /// \param treeMode flag indicating tree mode BLAKE2b(bool treeMode=false, unsigned int digestSize = DIGESTSIZE); /// \brief Construct a BLAKE2b hash /// \param key a byte array used to key the cipher /// \param keyLength the size of the byte array /// \param salt a byte array used as salt /// \param saltLength the size of the byte array /// \param personalization a byte array used as prsonalization string /// \param personalizationLength the size of the byte array /// \param treeMode flag indicating tree mode /// \param digestSize the digest size, in bytes BLAKE2b(const byte *key, size_t keyLength, const byte* salt = NULLPTR, size_t saltLength = 0, const byte* personalization = NULLPTR, size_t personalizationLength = 0, bool treeMode=false, unsigned int digestSize = DIGESTSIZE); /// \brief Retrieve the object's name /// \returns the object's algorithm name following RFC 7693 /// \details Object algorithm name follows the naming described in /// RFC 7693, The BLAKE2 Cryptographic Hash and /// Message Authentication Code (MAC). For example, "BLAKE2b-512" and "BLAKE2s-256". std::string AlgorithmName() const {return std::string(BLAKE2b_Info::StaticAlgorithmName()) + "-" + IntToString(this->DigestSize()*8);} unsigned int DigestSize() const {return m_digestSize;} unsigned int OptimalDataAlignment() const {return (CRYPTOPP_BOOL_ALIGN16 ? 16 : GetAlignmentOf());} void Update(const byte *input, size_t length); void Restart(); /// \brief Restart a hash with parameter block and counter /// \param block parameter block /// \param counter counter array /// \details Parameter block is persisted across calls to Restart(). void Restart(const BLAKE2b_ParameterBlock& block, const word64 counter[2]); /// \brief Set tree mode /// \param mode the new tree mode /// \details BLAKE2 has two finalization flags, called State::f[0] and State::f[1]. /// If treeMode=false (default), then State::f[1] is never set. If /// treeMode=true, then State::f[1] is set when State::f[0] is set. /// Tree mode is persisted across calls to Restart(). void SetTreeMode(bool mode) {m_treeMode=mode;} /// \brief Get tree mode /// \returns the current tree mode /// \details Tree mode is persisted across calls to Restart(). bool GetTreeMode() const {return m_treeMode;} void TruncatedFinal(byte *hash, size_t size); std::string AlgorithmProvider() const; protected: // Operates on state buffer and/or input. Must be BLOCKSIZE, final block will pad with 0's. void Compress(const byte *input); inline void IncrementCounter(size_t count=BLOCKSIZE); void UncheckedSetKey(const byte* key, unsigned int length, const CryptoPP::NameValuePairs& params); private: AlignedState m_state; AlignedParameterBlock m_block; AlignedSecByteBlock m_key; word32 m_digestSize; bool m_treeMode; }; NAMESPACE_END #endif