From 6d1c757a17857503489a404ca50eb422ec108a1c Mon Sep 17 00:00:00 2001 From: Gilles Peskine Date: Fri, 24 Jan 2025 15:40:00 +0100 Subject: [PATCH] Changelog entry for error code space unification Signed-off-by: Gilles Peskine --- ChangeLog.d/error-unification.md | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 ChangeLog.d/error-unification.md diff --git a/ChangeLog.d/error-unification.md b/ChangeLog.d/error-unification.md new file mode 100644 index 000000000..fa16174db --- /dev/null +++ b/ChangeLog.d/error-unification.md @@ -0,0 +1,6 @@ +API changes + * The PSA and Mbed TLS error space are now unified. This means that + psa_xxx() functions can now potentially return MBEDTLS_ERR_xxx + values and mbedtls_xxx() functions can return PSA_ERROR_xxx values. + This will not affect most applications since in both cases, the + error values are between -32767 and -1 as before.