summaryrefslogtreecommitdiffstats
path: root/CHANGES.md
diff options
context:
space:
mode:
authorShane Lontis <shane.lontis@oracle.com>2021-04-23 10:53:03 +1000
committerShane Lontis <shane.lontis@oracle.com>2021-04-27 09:45:53 +1000
commitc85c5e1a5327379306f4c3f8248ace740c64c338 (patch)
treeddd316056c2eb911db89ebfc5eed68910991473f /CHANGES.md
parent990aa405dbf5899cc24c167b4c0a29a3db58e343 (diff)
Deprecate EVP_PKEY_cmp() and EVP_PKEY_cmp_parameters().
The replacement functions EVP_PKEY_eq() and EVP_PKEY_parameters_eq() already exist. Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: David von Oheimb <david.von.oheimb@siemens.com> (Merged from https://github.com/openssl/openssl/pull/14997)
Diffstat (limited to 'CHANGES.md')
-rw-r--r--CHANGES.md13
1 files changed, 6 insertions, 7 deletions
diff --git a/CHANGES.md b/CHANGES.md
index 480c4091a9..a7420d6d5a 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -567,14 +567,13 @@ OpenSSL 3.0
*Richard Levitte*
- * Renamed `EVP_PKEY_cmp()` to `EVP_PKEY_eq()` and
- `EVP_PKEY_cmp_parameters()` to `EVP_PKEY_parameters_eq()`.
- While the old function names have been retained for backward compatibility
- they should not be used in new developments
- because their return values are confusing: Unlike other `_cmp()` functions
- they do not return 0 in case their arguments are equal.
+ * Deprecated `EVP_PKEY_cmp()` and `EVP_PKEY_cmp_parameters()` since their
+ return values were confusing: Unlike other `_cmp()` functions
+ they do not return 0 when their arguments are equal.
+ The new replacement functions `EVP_PKEY_eq()` and `EVP_PKEY_parameters_eq()`
+ should be used.
- *David von Oheimb*
+ *David von Oheimb and Shane Lontis*
* Deprecated `EC_METHOD_get_field_type()`. Applications should switch to
`EC_GROUP_get_field_type()`.