Skip to content

Commit

Permalink
Update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
noloader committed Feb 13, 2019
1 parent 8db6fe1 commit 2e44095
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions keccak.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ class Keccak : public HashTransformation
/// \details Keccak is the base class for Keccak_224, Keccak_256, Keccak_384 and Keccak_512.
/// Library users should instantiate a derived class, and only use Keccak
/// 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.4
Keccak(unsigned int digestSize) : m_digestSize(digestSize) {Restart();}

Expand Down
3 changes: 3 additions & 0 deletions sha3.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ class SHA3 : public HashTransformation
/// \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:
Expand Down
2 changes: 2 additions & 0 deletions shake.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ class SHAKE : public HashTransformation
/// \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();}

Expand Down

0 comments on commit 2e44095

Please sign in to comment.