From 08c37e5887fdcce729d2486857f8825151b81c82 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Tue, 15 Aug 2017 14:26:30 -0400 Subject: [PATCH] Update comments in Rijndael head comments --- rijndael.cpp | 4 ++++ rijndael.h | 1 + 2 files changed, 5 insertions(+) diff --git a/rijndael.cpp b/rijndael.cpp index ef36acf1..85d63cf1 100644 --- a/rijndael.cpp +++ b/rijndael.cpp @@ -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. */ diff --git a/rijndael.h b/rijndael.h index 32d69867..0a17ad84 100644 --- a/rijndael.h +++ b/rijndael.h @@ -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