Bring includes into canonical order
authortb <tb@openbsd.org>
Tue, 18 Apr 2023 08:47:28 +0000 (08:47 +0000)
committertb <tb@openbsd.org>
Tue, 18 Apr 2023 08:47:28 +0000 (08:47 +0000)
Requested by jsing

lib/libcrypto/asn1/asn1.h
lib/libcrypto/dsa/dsa.h
lib/libcrypto/ecdsa/ecdsa.h
lib/libcrypto/engine/engine.h
lib/libcrypto/rsa/rsa.h
lib/libcrypto/x509/x509.h

index 01bfcd3..03d7a29 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: asn1.h,v 1.73 2023/04/18 08:33:43 tb Exp $ */
+/* $OpenBSD: asn1.h,v 1.74 2023/04/18 08:47:28 tb Exp $ */
 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  * All rights reserved.
  *
 #ifndef OPENSSL_NO_BIO
 #include <openssl/bio.h>
 #endif
+#include <openssl/bn.h>
 #include <openssl/stack.h>
 #include <openssl/safestack.h>
 
 #include <openssl/ossl_typ.h>
-#include <openssl/bn.h>
 
 #ifdef  __cplusplus
 extern "C" {
index 3d81dc6..8029e7f 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: dsa.h,v 1.42 2023/04/18 08:33:43 tb Exp $ */
+/* $OpenBSD: dsa.h,v 1.43 2023/04/18 08:47:28 tb Exp $ */
 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  * All rights reserved.
  *
 #ifndef OPENSSL_NO_BIO
 #include <openssl/bio.h>
 #endif
-#include <openssl/crypto.h>
-#include <openssl/ossl_typ.h>
-
 #include <openssl/bn.h>
+#include <openssl/crypto.h>
 #ifndef OPENSSL_NO_DH
 # include <openssl/dh.h>
 #endif
 
+#include <openssl/ossl_typ.h>
+
 #ifndef OPENSSL_DSA_MAX_MODULUS_BITS
 # define OPENSSL_DSA_MAX_MODULUS_BITS  10000
 #endif
index d095ef4..6139dba 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: ecdsa.h,v 1.14 2023/04/18 08:33:43 tb Exp $ */
+/* $OpenBSD: ecdsa.h,v 1.15 2023/04/18 08:47:28 tb Exp $ */
 /**
  * \file   crypto/ecdsa/ecdsa.h Include file for the OpenSSL ECDSA functions
  * \author Written by Nils Larsch for the OpenSSL project
 #error ECDSA is disabled.
 #endif
 
+#include <openssl/bn.h>
 #include <openssl/ec.h>
+
 #include <openssl/ossl_typ.h>
-#include <openssl/bn.h>
 
 #ifdef __cplusplus
 extern "C" {
index 8a3574f..51c6b63 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: engine.h,v 1.36 2023/04/18 08:33:43 tb Exp $ */
+/* $OpenBSD: engine.h,v 1.37 2023/04/18 08:47:28 tb Exp $ */
 /* Written by Geoff Thorpe (geoff@geoffthorpe.net) for the OpenSSL
  * project 2000.
  */
 #endif
 
 #include <openssl/bn.h>
-#ifndef OPENSSL_NO_RSA
-#include <openssl/rsa.h>
+#ifndef OPENSSL_NO_DH
+#include <openssl/dh.h>
 #endif
 #ifndef OPENSSL_NO_DSA
 #include <openssl/dsa.h>
 #endif
-#ifndef OPENSSL_NO_DH
-#include <openssl/dh.h>
+#ifndef OPENSSL_NO_EC
+#include <openssl/ec.h>
 #endif
 #ifndef OPENSSL_NO_ECDH
 #include <openssl/ecdh.h>
 #ifndef OPENSSL_NO_ECDSA
 #include <openssl/ecdsa.h>
 #endif
-#ifndef OPENSSL_NO_EC
-#include <openssl/ec.h>
+#include <openssl/err.h>
+#ifndef OPENSSL_NO_RSA
+#include <openssl/rsa.h>
 #endif
 #include <openssl/ui.h>
-#include <openssl/err.h>
 
 #include <openssl/ossl_typ.h>
 
index bf0aac6..cddd80b 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: rsa.h,v 1.61 2023/04/18 08:33:43 tb Exp $ */
+/* $OpenBSD: rsa.h,v 1.62 2023/04/18 08:47:28 tb Exp $ */
 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  * All rights reserved.
  *
 #ifndef OPENSSL_NO_BIO
 #include <openssl/bio.h>
 #endif
+#include <openssl/bn.h>
 #include <openssl/crypto.h>
+
 #include <openssl/ossl_typ.h>
-#include <openssl/bn.h>
 
 #ifdef OPENSSL_NO_RSA
 #error RSA is disabled.
index ac14dd3..9f87700 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: x509.h,v 1.95 2023/04/18 08:33:43 tb Exp $ */
+/* $OpenBSD: x509.h,v 1.96 2023/04/18 08:47:28 tb Exp $ */
 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  * All rights reserved.
  *
 
 #include <openssl/opensslconf.h>
 
+#include <openssl/asn1.h>
+#ifndef OPENSSL_NO_BIO
+#include <openssl/bio.h>
+#endif
 #ifndef OPENSSL_NO_BUFFER
 #include <openssl/buffer.h>
 #endif
-#ifndef OPENSSL_NO_EVP
-#include <openssl/evp.h>
+#ifndef OPENSSL_NO_DH
+#include <openssl/dh.h>
 #endif
-#ifndef OPENSSL_NO_BIO
-#include <openssl/bio.h>
+#ifndef OPENSSL_NO_DSA
+#include <openssl/dsa.h>
 #endif
-#include <openssl/stack.h>
-#include <openssl/asn1.h>
-#include <openssl/safestack.h>
-
 #ifndef OPENSSL_NO_EC
 #include <openssl/ec.h>
 #endif
-
 #ifndef OPENSSL_NO_ECDSA
 #include <openssl/ecdsa.h>
 #endif
-
 #ifndef OPENSSL_NO_ECDH
 #include <openssl/ecdh.h>
 #endif
-
+#ifndef OPENSSL_NO_EVP
+#include <openssl/evp.h>
+#endif
 #ifndef OPENSSL_NO_RSA
 #include <openssl/rsa.h>
 #endif
-#ifndef OPENSSL_NO_DSA
-#include <openssl/dsa.h>
-#endif
-#ifndef OPENSSL_NO_DH
-#include <openssl/dh.h>
-#endif
-
 #ifndef OPENSSL_NO_SHA
 #include <openssl/sha.h>
 #endif
+#include <openssl/stack.h>
+#include <openssl/safestack.h>
+
 #include <openssl/ossl_typ.h>
 
 #ifdef  __cplusplus