From cc27702cebc612e3a63a8613cf92128935701e76 Mon Sep 17 00:00:00 2001 From: Valerio Setti Date: Fri, 4 Oct 2024 17:45:21 +0200 Subject: [PATCH] changelog: updated description Signed-off-by: Valerio Setti --- ChangeLog.d/9302.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ChangeLog.d/9302.txt b/ChangeLog.d/9302.txt index bc121de0c9..f2389bf820 100644 --- a/ChangeLog.d/9302.txt +++ b/ChangeLog.d/9302.txt @@ -1,8 +1,8 @@ Features * When the new compilation option MBEDTLS_PSA_STATIC_KEY_SLOTS is enabled, - key store uses static key slot buffers instead of dynamically allocated - ones. - * The size of each static key slot buffer is determined by - MBEDTLS_PSA_STATIC_KEY_SLOT_BUFFER_SIZE. If not set, its default value - is set to accomodate for the largest PSA asymmetric/symmetric key enabled - in the build. + key store uses statically allocated key slot's buffers instead of + dynamically allocating them on heap memory at runtime (through malloc/free + calls). + The size of each buffer is given by the option + MBEDTLS_PSA_STATIC_KEY_SLOT_BUFFER_SIZE. By default it accomodates the + largest PSA key enabled in the build.