From d834896c8b423359dee2e95c18a8198e349d13a0 Mon Sep 17 00:00:00 2001 From: Valerio Setti Date: Wed, 20 Dec 2023 16:00:44 +0100 Subject: [PATCH] changelog: enhancing descriptions Signed-off-by: Valerio Setti --- ChangeLog.d/8358.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ChangeLog.d/8358.txt b/ChangeLog.d/8358.txt index d4c847c827..2b66d8d229 100644 --- a/ChangeLog.d/8358.txt +++ b/ChangeLog.d/8358.txt @@ -1,9 +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. + get most things working, including TLS - see + docs/driver-only-builds.md for full details and current limitations. + * The CTR-DRBG module no longer depends on MBEDTLS_AES_C and can also use + AES from a PSA driver. This requires MBEDTLS_PSA_CRYPTO_C, + PSA_WANT_KEY_TYPE_AES and PSA_WANT_ALG_ECB_NO_PADDING to be enabled, and + MBEDTLS_AES_C to be disabled.