diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2023-06-24 17:18:16 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2023-06-24 17:18:16 +0000 |
commit | 7164fac7152c7dd42598f4f39ee812820f2afbed (patch) | |
tree | 5ef2560e699970b1e0f1964d672284cb9aeef52d /lib/libcrypto/ec/ec_local.h | |
parent | a5aa72c0c20225b588232070502f49129d9d6050 (diff) |
Mop up ec_wNAF_{,have_}precompute_mult().
These were previously called by GF2m code and are no longer used.
Also remove ec_pre_comp_new(), since it is only called by
ec_wNAF_precompute_mult() and is now unused.
ok tb@
Diffstat (limited to 'lib/libcrypto/ec/ec_local.h')
-rw-r--r-- | lib/libcrypto/ec/ec_local.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/libcrypto/ec/ec_local.h b/lib/libcrypto/ec/ec_local.h index c827a8f7081..d178665c1fe 100644 --- a/lib/libcrypto/ec/ec_local.h +++ b/lib/libcrypto/ec/ec_local.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ec_local.h,v 1.14 2023/06/12 18:17:18 jsing Exp $ */ +/* $OpenBSD: ec_local.h,v 1.15 2023/06/24 17:18:15 jsing Exp $ */ /* * Originally written by Bodo Moeller for the OpenSSL project. */ @@ -308,9 +308,6 @@ struct ec_point_st { * (ec_lib.c uses these as defaults if group->method->mul is 0) */ int ec_wNAF_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *); -int ec_wNAF_precompute_mult(EC_GROUP *group, BN_CTX *); -int ec_wNAF_have_precompute_mult(const EC_GROUP *group); - /* method functions in ecp_smpl.c */ int ec_GFp_simple_group_init(EC_GROUP *); |