From 9a8bf9f85d01aa4d1d2cf66f32ea33243ae91a5a Mon Sep 17 00:00:00 2001 From: Gilles Peskine Date: Thu, 16 Mar 2023 17:50:15 +0100 Subject: [PATCH] Announce the expanded AESNI support Signed-off-by: Gilles Peskine --- ChangeLog.d/aesni.txt | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 ChangeLog.d/aesni.txt diff --git a/ChangeLog.d/aesni.txt b/ChangeLog.d/aesni.txt new file mode 100644 index 000000000..2d90a6e1c --- /dev/null +++ b/ChangeLog.d/aesni.txt @@ -0,0 +1,7 @@ +Features + * AES-NI is now supported with Visual Studio. + * AES-NI is now supported in 32-bit builds, or when MBEDTLS_HAVE_ASM + is disabled, when compiling with GCC or Clang or a compatible compiler + for a target CPU that supports the requisite instructions (for example + gcc -m32 -msse2 -maes -mpclmul). (Generic x86 builds with GCC-like + compilers still require MBEDTLS_HAVE_ASM and a 64-bit target.)