From 7d8fd3fafe3d32de6760a7421ecde0fdc1761e78 Mon Sep 17 00:00:00 2001 From: Paul Elliott Date: Fri, 15 Mar 2024 17:50:45 +0000 Subject: [PATCH] Add changelog entry for threading MVP Signed-off-by: Paul Elliott --- ChangeLog.d/add_threading_changelog.txt | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 ChangeLog.d/add_threading_changelog.txt diff --git a/ChangeLog.d/add_threading_changelog.txt b/ChangeLog.d/add_threading_changelog.txt new file mode 100644 index 0000000000..b6c79f03f9 --- /dev/null +++ b/ChangeLog.d/add_threading_changelog.txt @@ -0,0 +1,6 @@ +Features + * Add protection for multithreaded access to the PSA keystore and protection + for multithreaded access to the the PSA global state, including + concurrently calling psa_crypto_init() when MBEDTLS_THREADING_C and + MBEDTLS_THREADING_PTHREAD are defined. See + docs/architecture/psa-thread-safety/psa-thread-safety.md for more details.