2023-12-04 09:21:46 +01:00
|
|
|
Features
|
|
|
|
* It is now possible to have AEADs support (CCM, GCM and ChaChaPoly) without
|
|
|
|
MBEDTLS_CIPHER_C. This holds both for the builtin suport (MBEDTLS_CCM_C,
|
2023-12-06 11:32:10 +01:00
|
|
|
MBEDTLS_GCM_C and MBEDTLS_CHACHAPOLY_C) as well as the PSA one
|
2023-12-04 09:21:46 +01:00
|
|
|
(PSA_WANT_ALG_CCM, PSA_WANT_ALG_GCM, PSA_WANT_ALG_CHACHA20_POLY1305).
|
|
|
|
On the PSA side this means that it is possible to enable
|
2023-12-06 11:32:10 +01:00
|
|
|
MBEDTLS_PSA_CRYPTO_C without MBEDTLS_CIPHER_C if none of the
|
2023-12-04 09:21:46 +01:00
|
|
|
non-authenticated ciphers is enabled.
|