summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/ec/ec_lib.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/ec/ec_lib.c')
-rw-r--r--src/lib/libcrypto/ec/ec_lib.c25
1 files changed, 1 insertions, 24 deletions
diff --git a/src/lib/libcrypto/ec/ec_lib.c b/src/lib/libcrypto/ec/ec_lib.c
index b9829b6a47..315a8130cf 100644
--- a/src/lib/libcrypto/ec/ec_lib.c
+++ b/src/lib/libcrypto/ec/ec_lib.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ec_lib.c,v 1.120 2025/03/09 15:39:39 tb Exp $ */ 1/* $OpenBSD: ec_lib.c,v 1.121 2025/03/09 15:42:19 tb Exp $ */
2/* 2/*
3 * Originally written by Bodo Moeller for the OpenSSL project. 3 * Originally written by Bodo Moeller for the OpenSSL project.
4 */ 4 */
@@ -1362,26 +1362,3 @@ EC_POINT_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *g_scalar,
1362 return ret; 1362 return ret;
1363} 1363}
1364LCRYPTO_ALIAS(EC_POINT_mul); 1364LCRYPTO_ALIAS(EC_POINT_mul);
1365
1366/*
1367 * XXX - remove everything below in the next bump
1368 */
1369
1370int
1371EC_POINTs_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[],
1372 BN_CTX *ctx_in)
1373{
1374 ECerror(ERR_R_DISABLED);
1375 return 0;
1376}
1377LCRYPTO_ALIAS(EC_POINTs_make_affine);
1378
1379int
1380EC_POINTs_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar,
1381 size_t num, const EC_POINT *points[], const BIGNUM *scalars[],
1382 BN_CTX *ctx_in)
1383{
1384 ECerror(ERR_R_DISABLED);
1385 return 0;
1386}
1387LCRYPTO_ALIAS(EC_POINTs_mul);