diff options
author | tb <> | 2023-04-18 08:47:28 +0000 |
---|---|---|
committer | tb <> | 2023-04-18 08:47:28 +0000 |
commit | 6e1f6667e4c4f6bc69bbeeee57ecfc42bfb2ac10 (patch) | |
tree | b6cd13926762a1a092fe7bec28431b4cc10eef72 /src/lib/libcrypto/engine/engine.h | |
parent | 67408c75ffa5cf9afa8816721916e650afef8c32 (diff) | |
download | openbsd-6e1f6667e4c4f6bc69bbeeee57ecfc42bfb2ac10.tar.gz openbsd-6e1f6667e4c4f6bc69bbeeee57ecfc42bfb2ac10.tar.bz2 openbsd-6e1f6667e4c4f6bc69bbeeee57ecfc42bfb2ac10.zip |
Bring includes into canonical order
Requested by jsing
Diffstat (limited to 'src/lib/libcrypto/engine/engine.h')
-rw-r--r-- | src/lib/libcrypto/engine/engine.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/lib/libcrypto/engine/engine.h b/src/lib/libcrypto/engine/engine.h index 8a3574fd57..51c6b63393 100644 --- a/src/lib/libcrypto/engine/engine.h +++ b/src/lib/libcrypto/engine/engine.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: engine.h,v 1.36 2023/04/18 08:33:43 tb Exp $ */ | 1 | /* $OpenBSD: engine.h,v 1.37 2023/04/18 08:47:28 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 | */ |
@@ -71,14 +71,14 @@ | |||
71 | #endif | 71 | #endif |
72 | 72 | ||
73 | #include <openssl/bn.h> | 73 | #include <openssl/bn.h> |
74 | #ifndef OPENSSL_NO_RSA | 74 | #ifndef OPENSSL_NO_DH |
75 | #include <openssl/rsa.h> | 75 | #include <openssl/dh.h> |
76 | #endif | 76 | #endif |
77 | #ifndef OPENSSL_NO_DSA | 77 | #ifndef OPENSSL_NO_DSA |
78 | #include <openssl/dsa.h> | 78 | #include <openssl/dsa.h> |
79 | #endif | 79 | #endif |
80 | #ifndef OPENSSL_NO_DH | 80 | #ifndef OPENSSL_NO_EC |
81 | #include <openssl/dh.h> | 81 | #include <openssl/ec.h> |
82 | #endif | 82 | #endif |
83 | #ifndef OPENSSL_NO_ECDH | 83 | #ifndef OPENSSL_NO_ECDH |
84 | #include <openssl/ecdh.h> | 84 | #include <openssl/ecdh.h> |
@@ -86,11 +86,11 @@ | |||
86 | #ifndef OPENSSL_NO_ECDSA | 86 | #ifndef OPENSSL_NO_ECDSA |
87 | #include <openssl/ecdsa.h> | 87 | #include <openssl/ecdsa.h> |
88 | #endif | 88 | #endif |
89 | #ifndef OPENSSL_NO_EC | 89 | #include <openssl/err.h> |
90 | #include <openssl/ec.h> | 90 | #ifndef OPENSSL_NO_RSA |
91 | #include <openssl/rsa.h> | ||
91 | #endif | 92 | #endif |
92 | #include <openssl/ui.h> | 93 | #include <openssl/ui.h> |
93 | #include <openssl/err.h> | ||
94 | 94 | ||
95 | #include <openssl/ossl_typ.h> | 95 | #include <openssl/ossl_typ.h> |
96 | 96 | ||