changelog: enhancing descriptions

Signed-off-by: Valerio Setti <valerio.setti@nordicsemi.no>
This commit is contained in:
Valerio Setti 2023-12-20 16:00:44 +01:00
parent af53132e44
commit d834896c8b

View File

@ -1,9 +1,9 @@
Features Features
* It is now possible to accelerate all ciphers and AEADs through a driver, * It is now possible to accelerate all ciphers and AEADs through a driver,
while completely removing legacy support and MBEDTLS_CIPHER_C, and still while completely removing legacy support and MBEDTLS_CIPHER_C, and still
get full functionality. Only unsupported features that still depend on get most things working, including TLS - see
MBEDTLS_CIPHER_C are: MBEDTLS_PKCS[5|12]_C and MBEDTLS_NIST_KW_C. docs/driver-only-builds.md for full details and current limitations.
* CTR-DRBG module can now take advantage of PSA driver. Legacy * The CTR-DRBG module no longer depends on MBEDTLS_AES_C and can also use
MBEDTLS_AES_C is still the preferred solution, but when it's not available AES from a PSA driver. This requires MBEDTLS_PSA_CRYPTO_C,
it can rely on PSA if PSA_WANT_KEY_TYPE_AES and PSA_WANT_ALG_ECB_NO_PADDING PSA_WANT_KEY_TYPE_AES and PSA_WANT_ALG_ECB_NO_PADDING to be enabled, and
are defined. MBEDTLS_AES_C to be disabled.