diff options
author | tb <> | 2023-07-28 15:50:33 +0000 |
---|---|---|
committer | tb <> | 2023-07-28 15:50:33 +0000 |
commit | 0a9b2eebd959bd9a2fe64f36f8389266a7c0b88b (patch) | |
tree | 919fa2c577092b41cb1ba147c14b98991a0eacca /src/lib/libcrypto/x509 | |
parent | b5b5f9335614fcce5146d82ce069cfb3d23cc5a8 (diff) | |
download | openbsd-0a9b2eebd959bd9a2fe64f36f8389266a7c0b88b.tar.gz openbsd-0a9b2eebd959bd9a2fe64f36f8389266a7c0b88b.tar.bz2 openbsd-0a9b2eebd959bd9a2fe64f36f8389266a7c0b88b.zip |
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 '')
-rw-r--r-- | src/lib/libcrypto/x509/x509.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/lib/libcrypto/x509/x509.h b/src/lib/libcrypto/x509/x509.h index c2a9dfedc5..f76576f61c 100644 --- a/src/lib/libcrypto/x509/x509.h +++ b/src/lib/libcrypto/x509/x509.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: x509.h,v 1.100 2023/04/25 18:57:57 tb Exp $ */ | 1 | /* $OpenBSD: x509.h,v 1.101 2023/07/28 15:50:33 tb Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -82,12 +82,6 @@ | |||
82 | #ifndef OPENSSL_NO_EC | 82 | #ifndef OPENSSL_NO_EC |
83 | #include <openssl/ec.h> | 83 | #include <openssl/ec.h> |
84 | #endif | 84 | #endif |
85 | #ifndef OPENSSL_NO_ECDSA | ||
86 | #include <openssl/ecdsa.h> | ||
87 | #endif | ||
88 | #ifndef OPENSSL_NO_ECDH | ||
89 | #include <openssl/ecdh.h> | ||
90 | #endif | ||
91 | #ifndef OPENSSL_NO_EVP | 85 | #ifndef OPENSSL_NO_EVP |
92 | #include <openssl/evp.h> | 86 | #include <openssl/evp.h> |
93 | #endif | 87 | #endif |