summaryrefslogtreecommitdiff
path: root/shake.h
diff options
context:
space:
mode:
Diffstat (limited to 'shake.h')
-rw-r--r--shake.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/shake.h b/shake.h
index 98b1de3d..e9ce38a8 100644
--- a/shake.h
+++ b/shake.h
@@ -31,6 +31,8 @@ protected:
/// \details SHAKE is the base class for SHAKE128 and SHAKE256.
/// Library users should instantiate a derived class, and only use SHAKE
/// as a base class reference or pointer.
+ /// \details This constructor was moved to protected at Crypto++ 8.1
+ /// because users were attempting to create Keccak objects with it.
/// \since Crypto++ 8.1
SHAKE(unsigned int digestSize) : m_digestSize(digestSize) {Restart();}