diff options
| author | tb <> | 2023-04-25 19:26:45 +0000 |
|---|---|---|
| committer | tb <> | 2023-04-25 19:26:45 +0000 |
| commit | cbc048ebe96d12b48b4cb02e80423c0f74b7a6fd (patch) | |
| tree | a3af15f664ba745ec6f1dd24bd78b427fee17458 /src/lib/libcrypto/ec/ec_local.h | |
| parent | ca5efeb5b1e8d7d758ac5f1f193f58355db6ba99 (diff) | |
| download | openbsd-cbc048ebe96d12b48b4cb02e80423c0f74b7a6fd.tar.gz openbsd-cbc048ebe96d12b48b4cb02e80423c0f74b7a6fd.tar.bz2 openbsd-cbc048ebe96d12b48b4cb02e80423c0f74b7a6fd.zip | |
Move EC_KEY_{insert,set}_key_method_data() to internal-only
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 |
