summaryrefslogtreecommitdiff
path: root/sha3.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2019-02-13 00:01:58 -0500
committerJeffrey Walton <noloader@gmail.com>2019-02-13 00:01:58 -0500
commit2e440959b1e8a9d215d73631eb479a39d0d1a3f0 (patch)
treeb9fdb78fc4fbf3c9a0bb02a0200dee6d08b17740 /sha3.h
parent8db6fe16b442178a867426e95b8e9fe17aac9d90 (diff)
downloadcryptopp-git-2e440959b1e8a9d215d73631eb479a39d0d1a3f0.tar.gz
Update documentation
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: