summaryrefslogtreecommitdiff
path: root/keccak.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2016-09-20 10:03:11 -0400
committerJeffrey Walton <noloader@gmail.com>2016-09-20 10:03:11 -0400
commitaaedeaa6471d09a87b54f945442a7a8e175924f5 (patch)
tree069296e64038245a532f4c4578ec199e1c44c1fb /keccak.h
parentb79ca63a3419b0f7422dd6a6f940d8ad6d325a5b (diff)
downloadcryptopp-git-aaedeaa6471d09a87b54f945442a7a8e175924f5.tar.gz
Updated documentation
Diffstat (limited to 'keccak.h')
-rw-r--r--keccak.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/keccak.h b/keccak.h
index 3dbd6237..2fa0037c 100644
--- a/keccak.h
+++ b/keccak.h
@@ -65,10 +65,10 @@ protected:
unsigned int m_digestSize, m_counter;
};
-//! \class Keccak_224
+//! \class Keccak_Final
//! \tparam DigestSize controls the digest size as a template parameter instead of a per-class constant
//! \brief Keccak-X message digest, template for more fine-grained typedefs
-//! \since Crypto++ 5.7.0
+//! \since Crypto++ 5.6.5
template<unsigned int digestSize>
class Keccak_Final : public Keccak
{
@@ -76,7 +76,7 @@ public:
CRYPTOPP_CONSTANT(DIGESTSIZE = digestSize)
CRYPTOPP_CONSTANT(BLOCKSIZE = 200 - 2 * DIGESTSIZE)
- //! \brief Construct a Keccak-X message digest
+ //! \brief Construct a Keccak-X message digest
Keccak_Final() : Keccak(DIGESTSIZE) {}
CRYPTOPP_CONSTEXPR static std::string StaticAlgorithmName() { return "Keccak-" + IntToString(DIGESTSIZE * 8); }
CRYPTOPP_CONSTEXPR unsigned int BlockSize() const { return BLOCKSIZE; }