summaryrefslogtreecommitdiff
path: root/sha3.h
diff options
context:
space:
mode:
Diffstat (limited to 'sha3.h')
-rw-r--r--sha3.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/sha3.h b/sha3.h
index 54ae5371..1c5d88bb 100644
--- a/sha3.h
+++ b/sha3.h
@@ -32,6 +32,9 @@ protected:
/// \details SHA3 is the base class for SHA3_224, SHA3_256, SHA3_384 and SHA3_512.
/// Library users should instantiate a derived class, and only use SHA3
/// 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++ 5.6.2
SHA3(unsigned int digestSize) : m_digestSize(digestSize) {Restart();}
public: