summaryrefslogtreecommitdiff
path: root/eax.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 /eax.h
parentd28d6e0248c9539913141aa97ec0dd60aca654db (diff)
downloadcryptopp-git-d8f91752db252b0b52b8731ff9a8f9d691736758.tar.gz
Updated documentation
Diffstat (limited to 'eax.h')
-rw-r--r--eax.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/eax.h b/eax.h
index 178522bc..b3e6de4d 100644
--- a/eax.h
+++ b/eax.h
@@ -15,6 +15,7 @@ NAMESPACE_BEGIN(CryptoPP)
//! \class EAX_Base
//! \brief EAX block cipher base implementation
//! \details Base implementation of the AuthenticatedSymmetricCipher interface
+//! \since Crypto++ 5.6.0
class CRYPTOPP_NO_VTABLE EAX_Base : public AuthenticatedSymmetricCipherBase
{
public:
@@ -70,6 +71,7 @@ protected:
//! \brief EAX block cipher final implementation
//! \tparam T_BlockCipher block cipher
//! \tparam T_IsEncryption direction in which to operate the cipher
+//! \since Crypto++ 5.6.0
template <class T_BlockCipher, bool T_IsEncryption>
class EAX_Final : public EAX_Base
{
@@ -94,6 +96,7 @@ private:
//! \details \p EAX provides the \p Encryption and \p Decryption typedef. See EAX_Base
//! and EAX_Final for the AuthenticatedSymmetricCipher implementation.
//! \sa <a href="http://www.cryptolounge.org/wiki/EAX">EAX</a> at the Crypto Lounge
+//! \since Crypto++ 5.6.0
template <class T_BlockCipher>
struct EAX : public AuthenticatedSymmetricCipherDocumentation
{