Fix SHAKE compile error with old GCC (GH #818)
parent
0d17eea82c
commit
fc3b16e3a3
4
shake.h
4
shake.h
|
|
@ -125,7 +125,7 @@ public:
|
|||
/// requires the output size in advance because the algoirthm uses
|
||||
/// output size as a parameter to the hash function.
|
||||
/// \since Crypto++ 8.1
|
||||
SHAKE128(unsigned int outputSize) : SHAKE_Final(outputSize) {}
|
||||
SHAKE128(unsigned int outputSize) : SHAKE_Final<128>(outputSize) {}
|
||||
};
|
||||
|
||||
/// \brief SHAKE256 message digest
|
||||
|
|
@ -155,7 +155,7 @@ public:
|
|||
/// requires the output size in advance because the algoirthm uses
|
||||
/// output size as a parameter to the hash function.
|
||||
/// \since Crypto++ 8.1
|
||||
SHAKE256(unsigned int outputSize) : SHAKE_Final(outputSize) {}
|
||||
SHAKE256(unsigned int outputSize) : SHAKE_Final<256>(outputSize) {}
|
||||
};
|
||||
|
||||
NAMESPACE_END
|
||||
|
|
|
|||
Loading…
Reference in New Issue