Update comments in Rijndael head comments

This commit is contained in:
Jeffrey Walton 2017-08-15 14:26:30 -04:00
parent 6f36c7deae
commit 08c37e5887
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
2 changed files with 5 additions and 0 deletions

View File

@ -4,6 +4,10 @@
// use "cl /EP /P /DCRYPTOPP_GENERATE_X64_MASM rijndael.cpp" to generate MASM code
/*
August 2017: Added support for ARMv8 AES instructions via compiler intrinsics.
*/
/*
July 2010: Added support for AES-NI instructions via compiler intrinsics.
*/

View File

@ -4,6 +4,7 @@
//! \brief Classes for Rijndael encryption algorithm
//! \details 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 AESNI since Crypto++ 5.6.1, ARMv8 AES since Crypto++ 6.0
#ifndef CRYPTOPP_RIJNDAEL_H
#define CRYPTOPP_RIJNDAEL_H