summaryrefslogtreecommitdiffstats
path: root/include
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 /include
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 'include')
-rw-r--r--include/openssl/ec.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/openssl/ec.h b/include/openssl/ec.h
index f05122b374..d684e7ca09 100644
--- a/include/openssl/ec.h
+++ b/include/openssl/ec.h
@@ -761,9 +761,10 @@ int EC_POINT_is_on_curve(const EC_GROUP *group, const EC_POINT *point,
int EC_POINT_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b,
BN_CTX *ctx);
-int EC_POINT_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx);
-int EC_POINTs_make_affine(const EC_GROUP *group, size_t num,
- EC_POINT *points[], BN_CTX *ctx);
+DEPRECATEDIN_3_0(int EC_POINT_make_affine(const EC_GROUP *group,
+ EC_POINT *point, BN_CTX *ctx))
+DEPRECATEDIN_3_0(int EC_POINTs_make_affine(const EC_GROUP *group, size_t num,
+ EC_POINT *points[], BN_CTX *ctx))
/** Computes r = generator * n + sum_{i=0}^{num-1} p[i] * m[i]
* \param group underlying EC_GROUP object