diff options
author | tb <> | 2023-07-28 09:22:26 +0000 |
---|---|---|
committer | tb <> | 2023-07-28 09:22:26 +0000 |
commit | f15cd04d37436407bfd863b507fcd73ca66e3976 (patch) | |
tree | 4eb57ae2fdd0f6dff20d00655e0d117dcf61415d /src/lib/libcrypto/engine/eng_list.c | |
parent | e5c3cb1fc9513740908e7dc235cee9871623b942 (diff) | |
download | openbsd-f15cd04d37436407bfd863b507fcd73ca66e3976.tar.gz openbsd-f15cd04d37436407bfd863b507fcd73ca66e3976.tar.bz2 openbsd-f15cd04d37436407bfd863b507fcd73ca66e3976.zip |
Excise ECDH_METHOD
Unlike ECDSA_METHOD, this has been unused forever but kind of needed to
stay for symmetry with ECDSA_METHOD. Now we can finally take it behind
the barn and remove its tendrils 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 e460e71136..eaa0d228f9 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.26 2023/07/28 09:08:31 tb Exp $ */ | 1 | /* $OpenBSD: eng_list.c,v 1.27 2023/07/28 09:22:26 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 | */ |
@@ -310,9 +310,6 @@ engine_cpy(ENGINE *dest, const ENGINE *src) | |||
310 | #ifndef OPENSSL_NO_DH | 310 | #ifndef OPENSSL_NO_DH |
311 | dest->dh_meth = src->dh_meth; | 311 | dest->dh_meth = src->dh_meth; |
312 | #endif | 312 | #endif |
313 | #ifndef OPENSSL_NO_ECDH | ||
314 | dest->ecdh_meth = src->ecdh_meth; | ||
315 | #endif | ||
316 | #ifndef OPENSSL_NO_EC | 313 | #ifndef OPENSSL_NO_EC |
317 | dest->ec_meth = src->ec_meth; | 314 | dest->ec_meth = src->ec_meth; |
318 | #endif | 315 | #endif |