diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2023-06-25 19:22:22 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2023-06-25 19:22:22 +0000 |
commit | 9ffb5cd27c40976f4ca1c35125b0ac18f6b9328d (patch) | |
tree | ba1efe2f8d677a0141b46e72949a7d5b29ab60b5 | |
parent | 39643c73f2792d4c7f280b07626cb33c2a94d546 (diff) |
Remove prototypes for EC_KEY_{get,insert}_key_method_data()
These were accidentally left behind in a previous commit.
-rw-r--r-- | lib/libcrypto/ec/ec_local.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/lib/libcrypto/ec/ec_local.h b/lib/libcrypto/ec/ec_local.h index 84e20375c28..9bdc3e7337c 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.20 2023/06/25 19:20:57 tb Exp $ */ +/* $OpenBSD: ec_local.h,v 1.21 2023/06/25 19:22:21 tb Exp $ */ /* * Originally written by Bodo Moeller for the OpenSSL project. */ @@ -368,13 +368,6 @@ int ossl_ecdsa_verify_sig(const unsigned char *dgst, int dgst_len, int ecdh_KDF_X9_63(unsigned char *out, size_t outlen, const unsigned char *Z, size_t Zlen, const unsigned char *sinfo, size_t sinfolen, const EVP_MD *md); -void *EC_KEY_get_key_method_data(EC_KEY *key, - void *(*dup_func)(void *), void (*free_func)(void *), - void (*clear_free_func)(void *)); -void *EC_KEY_insert_key_method_data(EC_KEY *key, void *data, - void *(*dup_func)(void *), void (*free_func)(void *), - void (*clear_free_func)(void *)); - int EC_POINT_set_Jprojective_coordinates(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(const EC_GROUP *group, |