diff options
| author | tb <> | 2023-07-28 09:08:31 +0000 |
|---|---|---|
| committer | tb <> | 2023-07-28 09:08:31 +0000 |
| commit | 8a9904a7f31aeb68336f4a9f6ba9e8ab8ecc7f11 (patch) | |
| tree | 9fbfcaf47aa3e6f663d8128e3944ef1c5715ad5f /src/lib/libcrypto/engine/eng_list.c | |
| parent | 92f3766713986fcccdc079df784442dcfde4921c (diff) | |
| download | openbsd-8a9904a7f31aeb68336f4a9f6ba9e8ab8ecc7f11.tar.gz openbsd-8a9904a7f31aeb68336f4a9f6ba9e8ab8ecc7f11.tar.bz2 openbsd-8a9904a7f31aeb68336f4a9f6ba9e8ab8ecc7f11.zip | |
Remove ECDSA_METHOD
After smtpd (in base) and libtls finally switched from ECDSA_METHOD to
EC_KEY_METHOD, much of the ECDSA_METHOD code was neutered. Remove the
remaining public API as well as numerous tentacles into ENGINE.
ok jsing
Diffstat (limited to 'src/lib/libcrypto/engine/eng_list.c')
| -rw-r--r-- | src/lib/libcrypto/engine/eng_list.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/lib/libcrypto/engine/eng_list.c b/src/lib/libcrypto/engine/eng_list.c index 451c8616ef..e460e71136 100644 --- a/src/lib/libcrypto/engine/eng_list.c +++ b/src/lib/libcrypto/engine/eng_list.c | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: eng_list.c,v 1.25 2022/12/26 07:18:51 jmc Exp $ */ | 1 | /* $OpenBSD: eng_list.c,v 1.26 2023/07/28 09:08:31 tb Exp $ */ |
| 2 | /* Written by Geoff Thorpe (geoff@geoffthorpe.net) for the OpenSSL | 2 | /* Written by Geoff Thorpe (geoff@geoffthorpe.net) for the OpenSSL |
| 3 | * project 2000. | 3 | * project 2000. |
| 4 | */ | 4 | */ |
| @@ -313,9 +313,6 @@ engine_cpy(ENGINE *dest, const ENGINE *src) | |||
| 313 | #ifndef OPENSSL_NO_ECDH | 313 | #ifndef OPENSSL_NO_ECDH |
| 314 | dest->ecdh_meth = src->ecdh_meth; | 314 | dest->ecdh_meth = src->ecdh_meth; |
| 315 | #endif | 315 | #endif |
| 316 | #ifndef OPENSSL_NO_ECDSA | ||
| 317 | dest->ecdsa_meth = src->ecdsa_meth; | ||
| 318 | #endif | ||
| 319 | #ifndef OPENSSL_NO_EC | 316 | #ifndef OPENSSL_NO_EC |
| 320 | dest->ec_meth = src->ec_meth; | 317 | dest->ec_meth = src->ec_meth; |
| 321 | #endif | 318 | #endif |
