diff --git a/hkdf.h b/hkdf.h index cd64fb39..62df33e4 100644 --- a/hkdf.h +++ b/hkdf.h @@ -29,8 +29,8 @@ template class HKDF : public KeyDerivationFunction { public: - CRYPTOPP_CONSTANT(DIGESTSIZE = T::DIGESTSIZE); - CRYPTOPP_CONSTANT(SALTSIZE = T::DIGESTSIZE); + CRYPTOPP_CONSTANT(DIGESTSIZE = T::DIGESTSIZE) + CRYPTOPP_CONSTANT(SALTSIZE = T::DIGESTSIZE) static const char* StaticAlgorithmName () { static const std::string name(std::string("HKDF(") + std::string(T::StaticAlgorithmName()) + std::string(")")); return name.c_str();