changelog: update description

Signed-off-by: Valerio Setti <valerio.setti@nordicsemi.no>
This commit is contained in:
Valerio Setti 2023-12-28 12:15:45 +01:00
parent b9f4bfc33b
commit b3413bf0b4

View File

@ -1,9 +1,9 @@
Features Features
* It is now possible to accelerate all ciphers and AEADs through a driver, * If a cipher or AEAD mechanism has a PSA driver, you can now build the
while completely removing legacy support and MBEDTLS_CIPHER_C, and still library without the corresponding built-in implementation and without
get most things working, including TLS - see enabling MBEDTLS_CIPHER_C.
docs/driver-only-builds.md for full details and current limitations. * It is possible to disable MBEDTLS_CIPHER_C in some circumstances, please
* The CTR-DRBG module no longer depends on MBEDTLS_AES_C and can also use see docs/driver-only-builds.md for full details and current limitations.
AES from a PSA driver. This requires MBEDTLS_PSA_CRYPTO_C, * The CTR_DRBG module will now use AES from a PSA driver if MBEDTLS_AES_C is
PSA_WANT_KEY_TYPE_AES and PSA_WANT_ALG_ECB_NO_PADDING to be enabled, and disabled. This requires PSA_WANT_ALG_ECB_NO_PADDING in addition to
MBEDTLS_AES_C to be disabled. MBEDTLS_PSA_CRYPTO_C and PSA_WANT_KEY_TYPE_AES.