summaryrefslogtreecommitdiff
path: root/shake.h
diff options
context:
space:
mode:
Diffstat (limited to 'shake.h')
-rw-r--r--shake.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/shake.h b/shake.h
index 8c4a0092..698215b2 100644
--- a/shake.h
+++ b/shake.h
@@ -66,8 +66,8 @@ template<unsigned int T_Strength>
class SHAKE_Final : public SHAKE
{
public:
- CRYPTOPP_CONSTANT(DIGESTSIZE = (T_Strength == 128 ? 32 : 64))
- CRYPTOPP_CONSTANT(BLOCKSIZE = (T_Strength == 128 ? 1344/8 : 1088/8))
+ CRYPTOPP_CONSTANT(DIGESTSIZE = (T_Strength == 128 ? 32 : 64)) ;
+ CRYPTOPP_CONSTANT(BLOCKSIZE = (T_Strength == 128 ? 1344/8 : 1088/8)) ;
static std::string StaticAlgorithmName()
{ return "SHAKE-" + IntToString(T_Strength); }