Remove prototypes for EC_KEY_{get,insert}_key_method_data()
authortb <tb@openbsd.org>
Sun, 25 Jun 2023 19:22:21 +0000 (19:22 +0000)
committertb <tb@openbsd.org>
Sun, 25 Jun 2023 19:22:21 +0000 (19:22 +0000)
These were accidentally left behind in a previous commit.

lib/libcrypto/ec/ec_local.h

index 84e2037..9bdc3e7 100644 (file)
@@ -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,