diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2023-07-28 15:50:34 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2023-07-28 15:50:34 +0000 |
commit | bb81557174d0d226a2b46c3df9c6f52a5bd867d9 (patch) | |
tree | c49bd57d5b29b57284be95f6020cbc4d9c44e147 /lib/libcrypto/ec | |
parent | b6fa97e8b8e523701cf2b8b2023e9efce1109c35 (diff) |
Stop including ecdsa.h and ecdh.h internally
These headers are now reduced to #include <openssl/ec.h> and are provided
for compatiblity only. There's no point in using them. At the same time
garbage collect the last uses of OPENSSL_NO_{ECDSA,ECDH} in our tree.
ok jsing
Diffstat (limited to 'lib/libcrypto/ec')
-rw-r--r-- | lib/libcrypto/ec/ec_local.h | 3 | ||||
-rw-r--r-- | lib/libcrypto/ec/ec_pmeth.c | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/lib/libcrypto/ec/ec_local.h b/lib/libcrypto/ec/ec_local.h index 8153d4a96a7..3252eeb1c83 100644 --- a/lib/libcrypto/ec/ec_local.h +++ b/lib/libcrypto/ec/ec_local.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ec_local.h,v 1.25 2023/07/28 09:28:37 tb Exp $ */ +/* $OpenBSD: ec_local.h,v 1.26 2023/07/28 15:50:33 tb Exp $ */ /* * Originally written by Bodo Moeller for the OpenSSL project. */ @@ -73,7 +73,6 @@ #include <openssl/bn.h> #include <openssl/ec.h> -#include <openssl/ecdsa.h> #include <openssl/objects.h> #include "bn_local.h" diff --git a/lib/libcrypto/ec/ec_pmeth.c b/lib/libcrypto/ec/ec_pmeth.c index 7c94f80c7fe..d3bf7e8cdca 100644 --- a/lib/libcrypto/ec/ec_pmeth.c +++ b/lib/libcrypto/ec/ec_pmeth.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ec_pmeth.c,v 1.18 2023/06/25 19:26:04 tb Exp $ */ +/* $OpenBSD: ec_pmeth.c,v 1.19 2023/07/28 15:50:33 tb Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project 2006. */ @@ -61,7 +61,6 @@ #include <openssl/asn1t.h> #include <openssl/ec.h> -#include <openssl/ecdsa.h> #include <openssl/err.h> #include <openssl/evp.h> #include <openssl/x509.h> |