From 730c2d9cccad11093bbb15c9fc739e68b7244247 Mon Sep 17 00:00:00 2001 From: Pauli Date: Tue, 19 Aug 2025 13:56:23 +1000 Subject: [PATCH] changes: add a CHANGES.md entry covering the generated parameter name decoding This isn't a user visible change but it's sufficiently noteworthy to justify a changes entry. Reviewed-by: Tomas Mraz Reviewed-by: Shane Lontis (Merged from https://github.com/openssl/openssl/pull/28275) --- CHANGES.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index 6e14af25d9..70a682cf45 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -31,6 +31,15 @@ OpenSSL 3.6 ### Changes between 3.5 and 3.6 [xx XXX xxxx] + * Refactored OSSL_PARAM name parsing so that automatically generated + parsers are used instead of OSSL_PARAM_locate calls. This should + also ensure that the list of acceptable parameters better matches + those which are actually processed. It should also provide a small + performance improvement because repeated iteration over passed + parameter arrays is avoided. + + *Dr Paul Dale* + * The FIPS provider now performs a PCT on key import for RSA, EC and ECX. This is mandated by FIPS 140-3 IG 10.3.A additional comment 1.