Cleared warning 'extra ";" ignored'
parent
5849050e14
commit
f0f060bb8b
4
hkdf.h
4
hkdf.h
|
|
@ -29,8 +29,8 @@ template <class T>
|
||||||
class HKDF : public KeyDerivationFunction
|
class HKDF : public KeyDerivationFunction
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
CRYPTOPP_CONSTANT(DIGESTSIZE = T::DIGESTSIZE);
|
CRYPTOPP_CONSTANT(DIGESTSIZE = T::DIGESTSIZE)
|
||||||
CRYPTOPP_CONSTANT(SALTSIZE = T::DIGESTSIZE);
|
CRYPTOPP_CONSTANT(SALTSIZE = T::DIGESTSIZE)
|
||||||
static const char* StaticAlgorithmName () {
|
static const char* StaticAlgorithmName () {
|
||||||
static const std::string name(std::string("HKDF(") + std::string(T::StaticAlgorithmName()) + std::string(")"));
|
static const std::string name(std::string("HKDF(") + std::string(T::StaticAlgorithmName()) + std::string(")"));
|
||||||
return name.c_str();
|
return name.c_str();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue