summaryrefslogtreecommitdiff
path: root/keccak.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2017-12-24 21:07:18 -0500
committerJeffrey Walton <noloader@gmail.com>2017-12-24 21:07:18 -0500
commitb20a91f6b2f6a41cc10f9fe5da63fa91f7f081e4 (patch)
tree68882a8ff6911460c3cc8bc974ab405ac73ee721 /keccak.h
parent41da3fa7f1d534c210fcc06c873fd0cc43956fc0 (diff)
downloadcryptopp-git-b20a91f6b2f6a41cc10f9fe5da63fa91f7f081e4.tar.gz
Update documentation
Diffstat (limited to 'keccak.h')
-rw-r--r--keccak.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/keccak.h b/keccak.h
index 9b111c76..89599b4e 100644
--- a/keccak.h
+++ b/keccak.h
@@ -66,10 +66,10 @@ protected:
unsigned int m_digestSize, m_counter;
};
-/// \class Keccak_224
-/// \tparam T_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++ 6.0.0
+/// \class Keccak_Final
+/// \brief Keccak message digest template
+/// \tparam T_DigestSize the size of the digest, in bytes
+/// \since Crypto++ 6.0
template<unsigned int T_DigestSize>
class Keccak_Final : public Keccak
{