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/ecdsa/ecdsa.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/ecdsa/ecdsa.h')
-rw-r--r-- | src/lib/libcrypto/ecdsa/ecdsa.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/libcrypto/ecdsa/ecdsa.h b/src/lib/libcrypto/ecdsa/ecdsa.h index d095ef40a3..6139dbac1a 100644 --- a/src/lib/libcrypto/ecdsa/ecdsa.h +++ b/src/lib/libcrypto/ecdsa/ecdsa.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ecdsa.h,v 1.14 2023/04/18 08:33:43 tb Exp $ */ | 1 | /* $OpenBSD: ecdsa.h,v 1.15 2023/04/18 08:47:28 tb Exp $ */ |
2 | /** | 2 | /** |
3 | * \file crypto/ecdsa/ecdsa.h Include file for the OpenSSL ECDSA functions | 3 | * \file crypto/ecdsa/ecdsa.h Include file for the OpenSSL ECDSA functions |
4 | * \author Written by Nils Larsch for the OpenSSL project | 4 | * \author Written by Nils Larsch for the OpenSSL project |
@@ -65,9 +65,10 @@ | |||
65 | #error ECDSA is disabled. | 65 | #error ECDSA is disabled. |
66 | #endif | 66 | #endif |
67 | 67 | ||
68 | #include <openssl/bn.h> | ||
68 | #include <openssl/ec.h> | 69 | #include <openssl/ec.h> |
70 | |||
69 | #include <openssl/ossl_typ.h> | 71 | #include <openssl/ossl_typ.h> |
70 | #include <openssl/bn.h> | ||
71 | 72 | ||
72 | #ifdef __cplusplus | 73 | #ifdef __cplusplus |
73 | extern "C" { | 74 | extern "C" { |