summaryrefslogtreecommitdiff
path: root/cmac.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2016-09-10 23:31:01 -0400
committerJeffrey Walton <noloader@gmail.com>2016-09-10 23:31:01 -0400
commitd8f91752db252b0b52b8731ff9a8f9d691736758 (patch)
treed5f5b69fd345a9659ee7984bd1855af3a372b589 /cmac.h
parentd28d6e0248c9539913141aa97ec0dd60aca654db (diff)
downloadcryptopp-git-d8f91752db252b0b52b8731ff9a8f9d691736758.tar.gz
Updated documentation
Diffstat (limited to 'cmac.h')
-rw-r--r--cmac.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/cmac.h b/cmac.h
index b43ce132..169eda9e 100644
--- a/cmac.h
+++ b/cmac.h
@@ -2,6 +2,7 @@
//! \file cmac.h
//! \brief Classes for CMAC message authentication code
+//! \since Crypto++ 5.6.0
#ifndef CRYPTOPP_CMAC_H
#define CRYPTOPP_CMAC_H
@@ -13,6 +14,7 @@ NAMESPACE_BEGIN(CryptoPP)
//! \class CMAC_Base
//! \brief CMAC base implementation
+//! \since Crypto++ 5.6.0
class CRYPTOPP_DLL CRYPTOPP_NO_VTABLE CMAC_Base : public MessageAuthenticationCode
{
public:
@@ -40,6 +42,7 @@ protected:
//! \tparam T block cipher
//! \details Template parameter T should be a class derived from BlockCipherDocumentation, for example AES, with a block size of 8, 16, or 32.
//! \sa <a href="http://www.cryptolounge.org/wiki/CMAC">CMAC</a>
+//! \since Crypto++ 5.6.0
template <class T>
class CMAC : public MessageAuthenticationCodeImpl<CMAC_Base, CMAC<T> >, public SameKeyLengthAs<T>
{