From 815dfad45fb21455544f1076aeb41edc3805817d Mon Sep 17 00:00:00 2001 From: tb <> Date: Sun, 9 Mar 2025 15:39:39 +0000 Subject: Remove Jprojective_coordinates API There goes another implementation detail that should never have been leaked out of the library. ok jsing --- src/lib/libcrypto/ec/ec.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'src/lib/libcrypto/ec/ec.h') diff --git a/src/lib/libcrypto/ec/ec.h b/src/lib/libcrypto/ec/ec.h index 6d8d9dfb07..3417df1ce9 100644 --- a/src/lib/libcrypto/ec/ec.h +++ b/src/lib/libcrypto/ec/ec.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ec.h,v 1.52 2025/03/09 15:37:31 tb Exp $ */ +/* $OpenBSD: ec.h,v 1.53 2025/03/09 15:39:39 tb Exp $ */ /* * Originally written by Bodo Moeller for the OpenSSL project. */ @@ -172,10 +172,6 @@ int EC_POINT_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *p, int EC_POINT_set_compressed_coordinates(const EC_GROUP *group, EC_POINT *p, const BIGNUM *x, int y_bit, BN_CTX *ctx); -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); -int EC_POINT_get_Jprojective_coordinates_GFp(const EC_GROUP *group, - const EC_POINT *p, BIGNUM *x, BIGNUM *y, BIGNUM *z, BN_CTX *ctx); int EC_POINT_set_affine_coordinates_GFp(const EC_GROUP *group, EC_POINT *p, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx); int EC_POINT_get_affine_coordinates_GFp(const EC_GROUP *group, -- cgit v1.2.3-55-g6feb