summaryrefslogtreecommitdiffstats
path: root/CHANGES.md
diff options
context:
space:
mode:
authorBilly Brumley <bbrumley@gmail.com>2020-05-19 17:48:36 +0300
committerTomas Mraz <tmraz@fedoraproject.org>2020-05-20 20:10:31 +0200
commitc2f2db9b6fb75ca2d672bb50f4f1f5a23991a6c3 (patch)
tree14237e71b684fe7f8135700ce431607df510013b /CHANGES.md
parent7486c718e54cc762edc5f1c7c526ab83d0f97ef7 (diff)
deprecate EC_POINT_make_affine and EC_POINTs_make_affine
Reviewed-by: Nicola Tuveri <nic.tuv@gmail.com> Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org> (Merged from https://github.com/openssl/openssl/pull/11874)
Diffstat (limited to 'CHANGES.md')
-rw-r--r--CHANGES.md16
1 files changed, 11 insertions, 5 deletions
diff --git a/CHANGES.md b/CHANGES.md
index 8afcb07b50..eb8659e9cf 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -23,12 +23,18 @@ OpenSSL 3.0
### Changes between 1.1.1 and 3.0 [xx XXX xxxx]
-* Deprecated EC_GROUP_precompute_mult(), EC_GROUP_have_precompute_mult(), and
- EC_KEY_precompute_mult() These functions are not widely used and applications
- should instead switch to named curves which OpenSSL has hardcoded lookup
- tables for.
+ * Deprecated EC_POINT_make_affine() and EC_POINTs_make_affine(). These
+ functions are not widely used and now OpenSSL automatically perform this
+ conversion when needed.
- *Billy Bob Brumley*
+ *Billy Bob Brumley*
+
+ * Deprecated EC_GROUP_precompute_mult(), EC_GROUP_have_precompute_mult(), and
+ EC_KEY_precompute_mult(). These functions are not widely used and
+ applications should instead switch to named curves which OpenSSL has
+ hardcoded lookup tables for.
+
+ *Billy Bob Brumley*
* Deprecated EC_POINTs_mul(). This function is not widely used and applications
should instead use the L<EC_POINT_mul(3)> function.