From d8f91752db252b0b52b8731ff9a8f9d691736758 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Sat, 10 Sep 2016 23:31:01 -0400 Subject: Updated documentation --- cmac.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'cmac.h') 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 CMAC +//! \since Crypto++ 5.6.0 template class CMAC : public MessageAuthenticationCodeImpl >, public SameKeyLengthAs { -- cgit v1.2.1