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 a615b573..37cb8274 100644
--- a/shake.h
+++ b/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