From: Ingo Franzki Date: Wed, 31 Jan 2024 07:46:52 +0000 (+0100) Subject: Fix typo in CHANGES.md X-Git-Tag: openssl-3.3.0-alpha1~240 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=de18dc3a635c3a82c365b3f2beeb491c78b01b11;p=thirdparty%2Fopenssl.git Fix typo in CHANGES.md OSSL_PKEY_PARAM_DERIVE_FROM_PQ must be OSSL_PKEY_PARAM_RSA_DERIVE_FROM_PQ (note the missing '_RSA'). Signed-off-by: Ingo Franzki Reviewed-by: Matt Caswell Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/23438) --- diff --git a/CHANGES.md b/CHANGES.md index 5ead89c05b5..bc0d03b5b38 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -30,7 +30,7 @@ OpenSSL 3.3 * The EVP_PKEY_fromdata function has been augmented to allow for the derivation of CRT (Chinese Remainder Theorem) parameters when requested. See the - OSSL_PKEY_PARAM_DERIVE_FROM_PQ param in the EVP_PKEY-RSA documentation. + OSSL_PKEY_PARAM_RSA_DERIVE_FROM_PQ param in the EVP_PKEY-RSA documentation. *Neil Horman*