summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2023-06-25 19:22:21 +0000
committertb <>2023-06-25 19:22:21 +0000
commit24b1bd6b208a24ebdadab837baf9d76829c7d4c4 (patch)
tree9c27e92cee5e81992057f089fcb252e60203a100 /src
parentf77c305e7c999d3d629c8ad6a7c969cbad04bbbb (diff)
downloadopenbsd-24b1bd6b208a24ebdadab837baf9d76829c7d4c4.tar.gz
openbsd-24b1bd6b208a24ebdadab837baf9d76829c7d4c4.tar.bz2
openbsd-24b1bd6b208a24ebdadab837baf9d76829c7d4c4.zip
Remove prototypes for EC_KEY_{get,insert}_key_method_data()
These were accidentally left behind in a previous commit.
Diffstat (limited to 'src')
-rw-r--r--src/lib/libcrypto/ec/ec_local.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/lib/libcrypto/ec/ec_local.h b/src/lib/libcrypto/ec/ec_local.h
index 84e20375c2..9bdc3e7337 100644
--- a/src/lib/libcrypto/ec/ec_local.h
+++ b/src/lib/libcrypto/ec/ec_local.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: ec_local.h,v 1.20 2023/06/25 19:20:57 tb Exp $ */ 1/* $OpenBSD: ec_local.h,v 1.21 2023/06/25 19:22:21 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 */
@@ -368,13 +368,6 @@ int ossl_ecdsa_verify_sig(const unsigned char *dgst, int dgst_len,
368int ecdh_KDF_X9_63(unsigned char *out, size_t outlen, const unsigned char *Z, 368int ecdh_KDF_X9_63(unsigned char *out, size_t outlen, const unsigned char *Z,
369 size_t Zlen, const unsigned char *sinfo, size_t sinfolen, const EVP_MD *md); 369 size_t Zlen, const unsigned char *sinfo, size_t sinfolen, const EVP_MD *md);
370 370
371void *EC_KEY_get_key_method_data(EC_KEY *key,
372 void *(*dup_func)(void *), void (*free_func)(void *),
373 void (*clear_free_func)(void *));
374void *EC_KEY_insert_key_method_data(EC_KEY *key, void *data,
375 void *(*dup_func)(void *), void (*free_func)(void *),
376 void (*clear_free_func)(void *));
377
378int EC_POINT_set_Jprojective_coordinates(const EC_GROUP *group, EC_POINT *p, 371int EC_POINT_set_Jprojective_coordinates(const EC_GROUP *group, EC_POINT *p,
379 const BIGNUM *x, const BIGNUM *y, const BIGNUM *z, BN_CTX *ctx); 372 const BIGNUM *x, const BIGNUM *y, const BIGNUM *z, BN_CTX *ctx);
380int EC_POINT_get_Jprojective_coordinates(const EC_GROUP *group, 373int EC_POINT_get_Jprojective_coordinates(const EC_GROUP *group,