summaryrefslogtreecommitdiff
path: root/shake.h
diff options
context:
space:
mode:
Diffstat (limited to 'shake.h')
-rw-r--r--shake.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/shake.h b/shake.h
index a63d1ce9..98b1de3d 100644
--- a/shake.h
+++ b/shake.h
@@ -25,7 +25,7 @@ NAMESPACE_BEGIN(CryptoPP)
/// \since Crypto++ 8.1
class SHAKE : public HashTransformation
{
-public:
+protected:
/// \brief Construct a SHAKE
/// \param digestSize the digest size, in bytes
/// \details SHAKE is the base class for SHAKE128 and SHAKE256.
@@ -33,6 +33,8 @@ public:
/// as a base class reference or pointer.
/// \since Crypto++ 8.1
SHAKE(unsigned int digestSize) : m_digestSize(digestSize) {Restart();}
+
+public:
unsigned int DigestSize() const {return m_digestSize;}
unsigned int OptimalDataAlignment() const {return GetAlignmentOf<word64>();}