From 10149c9516812e700922afd5d8b8832415b2e18d Mon Sep 17 00:00:00 2001 From: Valerio Setti Date: Mon, 4 Dec 2023 09:21:46 +0100 Subject: [PATCH] changelog: add changelog for AEAD support without CIPHER_C Signed-off-by: Valerio Setti --- ChangeLog.d/8357.txt | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 ChangeLog.d/8357.txt diff --git a/ChangeLog.d/8357.txt b/ChangeLog.d/8357.txt new file mode 100644 index 0000000000..24ba1404b6 --- /dev/null +++ b/ChangeLog.d/8357.txt @@ -0,0 +1,8 @@ +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, + MBEDTLS_GCM_C and MBEDTLS_CHACHAPOLY_c) as well as the PSA one + (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 + MBEDTLS_PSA_CRYPTO_C without MBEDTLS_CIPHER_C if any of the + non-authenticated ciphers is enabled.