From 68cc434c115e528552c21a7966379e774fdbb9c7 Mon Sep 17 00:00:00 2001 From: Gilles Peskine Date: Fri, 13 Nov 2020 21:37:48 +0100 Subject: [PATCH] PSA support for HMAC_DRBG: changelog entry Signed-off-by: Gilles Peskine --- ChangeLog.d/psa-crypto-hmac-drbg.txt | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 ChangeLog.d/psa-crypto-hmac-drbg.txt diff --git a/ChangeLog.d/psa-crypto-hmac-drbg.txt b/ChangeLog.d/psa-crypto-hmac-drbg.txt new file mode 100644 index 000000000..18a0d1b56 --- /dev/null +++ b/ChangeLog.d/psa-crypto-hmac-drbg.txt @@ -0,0 +1,5 @@ +Features + * The PSA crypto subsystem can now use HMAC_DRBG instead of CTR_DRBG. + CTR_DRBG is used by default if it is available, but you can override + this choice by setting MBEDTLS_PSA_HMAC_DRBG_MD_TYPE at compile time. + Fix #3354.