From 70f05bedd6b77d99b1ac6b5c510f061c1299adec Mon Sep 17 00:00:00 2001 From: Valerio Setti Date: Mon, 18 Dec 2023 16:15:44 +0100 Subject: [PATCH] changelog: add changelog for accelerated ciphers and AEADs Signed-off-by: Valerio Setti --- ChangeLog.d/8358.txt | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 ChangeLog.d/8358.txt diff --git a/ChangeLog.d/8358.txt b/ChangeLog.d/8358.txt new file mode 100644 index 0000000000..d4c847c827 --- /dev/null +++ b/ChangeLog.d/8358.txt @@ -0,0 +1,9 @@ +Features + * It is now possible to accelerate all ciphers and AEADs through a driver, + while completely removing legacy support and MBEDTLS_CIPHER_C, and still + get full functionality. Only unsupported features that still depend on + MBEDTLS_CIPHER_C are: MBEDTLS_PKCS[5|12]_C and MBEDTLS_NIST_KW_C. + * CTR-DRBG module can now take advantage of PSA driver. Legacy + MBEDTLS_AES_C is still the preferred solution, but when it's not available + it can rely on PSA if PSA_WANT_KEY_TYPE_AES and PSA_WANT_ALG_ECB_NO_PADDING + are defined.