summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/x509/x509.h
diff options
context:
space:
mode:
authortb <>2023-07-28 15:50:33 +0000
committertb <>2023-07-28 15:50:33 +0000
commitdee6ca6302cdbd5982c40288832f1fbe51d045d5 (patch)
tree919fa2c577092b41cb1ba147c14b98991a0eacca /src/lib/libcrypto/x509/x509.h
parenta65012e9329b7bde2223964c16b2a59e310f44b5 (diff)
downloadopenbsd-dee6ca6302cdbd5982c40288832f1fbe51d045d5.tar.gz
openbsd-dee6ca6302cdbd5982c40288832f1fbe51d045d5.tar.bz2
openbsd-dee6ca6302cdbd5982c40288832f1fbe51d045d5.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 'src/lib/libcrypto/x509/x509.h')
-rw-r--r--src/lib/libcrypto/x509/x509.h8
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