diff options
Diffstat (limited to 'src/lib/libcrypto/ec/ec_local.h')
-rw-r--r-- | src/lib/libcrypto/ec/ec_local.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/lib/libcrypto/ec/ec_local.h b/src/lib/libcrypto/ec/ec_local.h index d26ec47a24..95ef6fba7c 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.11 2023/03/08 05:45:31 jsing Exp $ */ | 1 | /* $OpenBSD: ec_local.h,v 1.12 2023/04/25 19:26:45 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 | */ |
@@ -407,4 +407,9 @@ int ossl_ecdsa_verify(int type, const unsigned char *dgst, int dgst_len, | |||
407 | int ossl_ecdsa_verify_sig(const unsigned char *dgst, int dgst_len, | 407 | int ossl_ecdsa_verify_sig(const unsigned char *dgst, int dgst_len, |
408 | const ECDSA_SIG *sig, EC_KEY *eckey); | 408 | const ECDSA_SIG *sig, EC_KEY *eckey); |
409 | 409 | ||
410 | void *EC_KEY_get_key_method_data(EC_KEY *key, | ||
411 | void *(*dup_func)(void *), void (*free_func)(void *), void (*clear_free_func)(void *)); | ||
412 | void *EC_KEY_insert_key_method_data(EC_KEY *key, void *data, | ||
413 | void *(*dup_func)(void *), void (*free_func)(void *), void (*clear_free_func)(void *)); | ||
414 | |||
410 | __END_HIDDEN_DECLS | 415 | __END_HIDDEN_DECLS |