summaryrefslogtreecommitdiffstats
path: root/CHANGES.md
diff options
context:
space:
mode:
authorslontis <shane.lontis@oracle.com>2022-10-26 11:10:50 +1000
committerTomas Mraz <tomas@openssl.org>2022-10-27 11:48:13 +0200
commit34e3cbf99f2113ca01b460cf37b56460262979af (patch)
tree5da3572d6b3c27b896fb5174de5447199766f56d /CHANGES.md
parent1cfc95b25c930df4de19c428a74d35f7a7411ab5 (diff)
Use RSA CRT parameters in FIPS self tests.
Fixes #19488 Use the correct OSSL_PKEY_PARAM_RSA CRT names fior the self tests. The invalid names cause CRT parameters to be silently ignored. Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/19501) (cherry picked from commit c7424fe68c65aa2187a8e4028d7dea742b95d81a) (cherry picked from commit 4215d649e92bc4c42997ec4a1e65beba1055bbe1)
Diffstat (limited to 'CHANGES.md')
-rw-r--r--CHANGES.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/CHANGES.md b/CHANGES.md
index 27cbc974c3..4adcde7785 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -30,6 +30,16 @@ breaking changes, and mappings for the large list of deprecated functions.
### Changes between 3.0.6 and 3.0.7 [xx XXX xxxx]
+ * Removed all references to invalid OSSL_PKEY_PARAM_RSA names for CRT parameters
+ in OpenSSL code.
+ Applications should not use the names OSSL_PKEY_PARAM_RSA_FACTOR,
+ OSSL_PKEY_PARAM_RSA_EXPONENT and OSSL_PKEY_PARAM_RSA_COEFFICIENT.
+ Use the numbered names such as OSSL_PKEY_PARAM_RSA_FACTOR1 instead.
+ Using these invalid names may cause algorithms to use slower methods
+ that ignore the CRT parameters.
+
+ *Shane Lontis*
+
* Added RIPEMD160 to the default provider.
*Paul Dale*