summaryrefslogtreecommitdiff
path: root/aes.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-03-22 22:11:35 -0400
committerJeffrey Walton <noloader@gmail.com>2018-03-22 22:11:35 -0400
commit5ae74e2fd58718c0dba77654fb857e5afd9ed0fa (patch)
treec56d5f6c74d871d184a92bcd0cba57b7b5a24c9e /aes.h
parentaf6b96c78bf24da83f4714eb76561e5ab576e05c (diff)
downloadcryptopp-git-5ae74e2fd58718c0dba77654fb857e5afd9ed0fa.tar.gz
Update documentation
Diffstat (limited to 'aes.h')
-rw-r--r--aes.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/aes.h b/aes.h
index 438d6526..a38269d9 100644
--- a/aes.h
+++ b/aes.h
@@ -4,8 +4,8 @@
/// \brief Class file for the AES cipher (Rijndael)
/// \details AES is a typdef for Rijndael classes. All key sizes are supported.
/// The library only provides Rijndael with 128-bit blocks, and not 192-bit or 256-bit blocks
-/// \since Rijndael since Crypto++ 3.2, Intel AES-NI since Crypto++ 5.6.1, ARMv8 AES since
-/// Crypto++ 6.0, Power8 AES since Crypto++ 6.0
+/// \since Rijndael since Crypto++ 3.1, Intel AES-NI since Crypto++ 5.6.1, ARMv8 AES since Crypto++ 6.0,
+/// Power8 AES since Crypto++ 6.0
#ifndef CRYPTOPP_AES_H
#define CRYPTOPP_AES_H
@@ -18,8 +18,8 @@ NAMESPACE_BEGIN(CryptoPP)
/// \details AES is a typdef for Rijndael classes. All key sizes are supported.
/// The library only provides Rijndael with 128-bit blocks, and not 192-bit or 256-bit blocks
/// \sa <a href="http://www.cryptolounge.org/wiki/AES">AES</a> winner, announced on 10/2/2000
-/// \since Rijndael since Crypto++ 3.2, Intel AES-NI since Crypto++ 5.6.1, ARMv8 AES since
-/// Crypto++ 6.0, Power8 AES since Crypto++ 6.0
+/// \since Rijndael since Crypto++ 3.1, Intel AES-NI since Crypto++ 5.6.1, ARMv8 AES since Crypto++ 6.0,
+/// Power8 AES since Crypto++ 6.0
DOCUMENTED_TYPEDEF(Rijndael, AES)
typedef RijndaelEncryption AESEncryption;