summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorBilly Brumley <bbrumley@gmail.com>2020-04-12 18:17:19 +0300
committerNicola Tuveri <nic.tuv@gmail.com>2020-04-22 02:06:50 +0300
commit07caec83b81859ea9aa2d5075a394aa48c4e5fae (patch)
treeadb866f0e2f6c4f572e91124625372f73fe62fd0 /include
parentc72e59349f50ee00a1bf8605ada17dfccb8b3b1a (diff)
[crypto/ec] deprecate Jprojective_coordinates_GFp functions
Reviewed-by: Nicola Tuveri <nic.tuv@gmail.com> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/11527)
Diffstat (limited to 'include')
-rw-r--r--include/openssl/ec.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/openssl/ec.h b/include/openssl/ec.h
index de3698a06f..0d7c231e8a 100644
--- a/include/openssl/ec.h
+++ b/include/openssl/ec.h
@@ -511,10 +511,10 @@ int EC_POINT_set_to_infinity(const EC_GROUP *group, EC_POINT *point);
* \param ctx BN_CTX object (optional)
* \return 1 on success and 0 if an error occurred
*/
-int EC_POINT_set_Jprojective_coordinates_GFp(const EC_GROUP *group,
+DEPRECATEDIN_3_0(int EC_POINT_set_Jprojective_coordinates_GFp(const EC_GROUP *group,
EC_POINT *p, const BIGNUM *x,
const BIGNUM *y, const BIGNUM *z,
- BN_CTX *ctx);
+ BN_CTX *ctx))
/** Gets the jacobian projective coordinates of a EC_POINT over GFp
* \param group underlying EC_GROUP object
@@ -525,10 +525,10 @@ int EC_POINT_set_Jprojective_coordinates_GFp(const EC_GROUP *group,
* \param ctx BN_CTX object (optional)
* \return 1 on success and 0 if an error occurred
*/
-int EC_POINT_get_Jprojective_coordinates_GFp(const EC_GROUP *group,
+DEPRECATEDIN_3_0(int EC_POINT_get_Jprojective_coordinates_GFp(const EC_GROUP *group,
const EC_POINT *p, BIGNUM *x,
BIGNUM *y, BIGNUM *z,
- BN_CTX *ctx);
+ BN_CTX *ctx))
/** Sets the affine coordinates of an EC_POINT
* \param group underlying EC_GROUP object