diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2024-11-01 05:10:41 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2024-11-01 05:10:41 +0000 |
commit | 7318dbd64b76894d5443f9906d5c51b989ad8fd4 (patch) | |
tree | 421522afbbb4bb5e408df270094e269fcfd5c658 /lib/libcrypto | |
parent | 3c26e033e4f9d294d7d68d1fa5b208f364a4e0d7 (diff) |
Garbage collect field_div() member.
It was only used by EC2M.
Diffstat (limited to 'lib/libcrypto')
-rw-r--r-- | lib/libcrypto/ec/ec_local.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/libcrypto/ec/ec_local.h b/lib/libcrypto/ec/ec_local.h index 547705e9a6d..56402a2b04e 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.35 2024/10/31 15:37:53 tb Exp $ */ +/* $OpenBSD: ec_local.h,v 1.36 2024/11/01 05:10:40 tb Exp $ */ /* * Originally written by Bodo Moeller for the OpenSSL project. */ @@ -152,8 +152,6 @@ struct ec_method_st { const BIGNUM *b, BN_CTX *); int (*field_sqr)(const EC_GROUP *, BIGNUM *r, const BIGNUM *a, BN_CTX *); - int (*field_div)(const EC_GROUP *, BIGNUM *r, const BIGNUM *a, - const BIGNUM *b, BN_CTX *); /* Encode to and decode from other forms (e.g. Montgomery). */ int (*field_encode)(const EC_GROUP *, BIGNUM *r, const BIGNUM *a, |