Make header guards of internal headers consistent
authortb <tb@openbsd.org>
Sat, 26 Nov 2022 17:23:17 +0000 (17:23 +0000)
committertb <tb@openbsd.org>
Sat, 26 Nov 2022 17:23:17 +0000 (17:23 +0000)
Not all of them, only those that didn't leak into a public header...
Yes.

16 files changed:
lib/libcrypto/aes/aes_local.h
lib/libcrypto/bn/bn_local.h
lib/libcrypto/camellia/cmll_local.h
lib/libcrypto/cms/cms_local.h
lib/libcrypto/constant_time.h
lib/libcrypto/ecdh/ech_local.h
lib/libcrypto/ecdsa/ecs_local.h
lib/libcrypto/evp/evp_local.h
lib/libcrypto/gost/gost_local.h
lib/libcrypto/pkcs12/pkcs12_local.h
lib/libcrypto/sm2/sm2_local.h
lib/libcrypto/ts/ts_local.h
lib/libcrypto/ui/ui_local.h
lib/libcrypto/x509/x509_local.h
lib/libssl/dtls_local.h
lib/libssl/ssl_local.h

index 4c984e0..ef74e71 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: aes_local.h,v 1.1 2022/11/26 16:08:50 tb Exp $ */
+/* $OpenBSD: aes_local.h,v 1.2 2022/11/26 17:23:17 tb Exp $ */
 /* ====================================================================
  * Copyright (c) 1998-2002 The OpenSSL Project.  All rights reserved.
  *
@@ -49,8 +49,8 @@
  *
  */
 
-#ifndef HEADER_AES_LOCL_H
-#define HEADER_AES_LOCL_H
+#ifndef HEADER_AES_LOCAL_H
+#define HEADER_AES_LOCAL_H
 
 #include <openssl/opensslconf.h>
 
@@ -80,4 +80,4 @@ typedef unsigned char u8;
 
 __END_HIDDEN_DECLS
 
-#endif /* !HEADER_AES_LOCL_H */
+#endif /* !HEADER_AES_LOCAL_H */
index 73d1f0a..7bddcb2 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: bn_local.h,v 1.1 2022/11/26 16:08:51 tb Exp $ */
+/* $OpenBSD: bn_local.h,v 1.2 2022/11/26 17:23:17 tb Exp $ */
 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  * All rights reserved.
  *
  *
  */
 
-#ifndef HEADER_BN_LCL_H
-#define HEADER_BN_LCL_H
+#ifndef HEADER_BN_LOCAL_H
+#define HEADER_BN_LOCAL_H
 
 #include <openssl/opensslconf.h>
 
@@ -564,4 +564,4 @@ int bn_is_perfect_square(int *out_perfect, const BIGNUM *n, BN_CTX *ctx);
 int bn_is_prime_bpsw(int *is_prime, const BIGNUM *n, BN_CTX *in_ctx);
 
 __END_HIDDEN_DECLS
-#endif
+#endif /* !HEADER_BN_LOCAL_H */
index b8bef6f..ed9807c 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: cmll_local.h,v 1.1 2022/11/26 16:08:51 tb Exp $ */
+/* $OpenBSD: cmll_local.h,v 1.2 2022/11/26 17:23:17 tb Exp $ */
 /* ====================================================================
  * Copyright 2006 NTT (Nippon Telegraph and Telephone Corporation) . 
  * ALL RIGHTS RESERVED.
@@ -65,8 +65,8 @@
  * ====================================================================
  */
 
-#ifndef HEADER_CAMELLIA_LOCL_H
-#define HEADER_CAMELLIA_LOCL_H
+#ifndef HEADER_CAMELLIA_LOCAL_H
+#define HEADER_CAMELLIA_LOCAL_H
 
 __BEGIN_HIDDEN_DECLS
 
@@ -86,4 +86,4 @@ void Camellia_DecryptBlock(int keyBitLength, const u8 ciphertext[],
 
 __END_HIDDEN_DECLS
 
-#endif /* #ifndef HEADER_CAMELLIA_LOCL_H */
+#endif /* !HEADER_CAMELLIA_LOCAL_H */
index 29e8825..65a684e 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: cms_local.h,v 1.1 2022/11/26 16:08:51 tb Exp $ */
+/* $OpenBSD: cms_local.h,v 1.2 2022/11/26 17:23:17 tb Exp $ */
 /*
  * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
  * project.
@@ -52,8 +52,8 @@
  * ====================================================================
  */
 
-#ifndef HEADER_CMS_LCL_H
-#define HEADER_CMS_LCL_H
+#ifndef HEADER_CMS_LOCAL_H
+#define HEADER_CMS_LOCAL_H
 
 #include <openssl/x509.h>
 
@@ -481,4 +481,4 @@ extern const ASN1_ITEM CMS_RevocationInfoChoice_it;
 extern const ASN1_ITEM CMS_SignedData_it;
 extern const ASN1_ITEM CMS_CompressedData_it;
 
-#endif
+#endif /* !HEADER_CMS_LOCAL_H */
index 2d511cc..6546526 100644 (file)
@@ -44,8 +44,8 @@
  * [including the GNU Public Licence.]
  */
 
-#ifndef HEADER_CONSTANT_TIME_LOCL_H
-# define HEADER_CONSTANT_TIME_LOCL_H
+#ifndef HEADER_CONSTANT_TIME_H
+#define HEADER_CONSTANT_TIME_H
 
 __BEGIN_HIDDEN_DECLS
 
@@ -204,4 +204,4 @@ void err_clear_last_constant_time(int clear);
 
 __END_HIDDEN_DECLS
 
-#endif                          /* HEADER_CONSTANT_TIME_LOCL_H */
+#endif /* !HEADER_CONSTANT_TIME_H */
index 33dd943..3c2a267 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: ech_local.h,v 1.1 2022/11/26 16:08:52 tb Exp $ */
+/* $OpenBSD: ech_local.h,v 1.2 2022/11/26 17:23:17 tb Exp $ */
 /* ====================================================================
  * Copyright (c) 2000-2005 The OpenSSL Project.  All rights reserved.
  *
@@ -53,8 +53,8 @@
  *
  */
 
-#ifndef HEADER_ECH_LOCL_H
-#define HEADER_ECH_LOCL_H
+#ifndef HEADER_ECH_LOCAL_H
+#define HEADER_ECH_LOCAL_H
 
 #include <openssl/ecdh.h>
 
@@ -96,4 +96,4 @@ int ecdh_KDF_X9_63(unsigned char *out, size_t outlen, const unsigned char *Z,
 
 __END_HIDDEN_DECLS
 
-#endif /* HEADER_ECH_LOCL_H */
+#endif /* !HEADER_ECH_LOCAL_H */
index 69794df..5cdf264 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: ecs_local.h,v 1.1 2022/11/26 16:08:52 tb Exp $ */
+/* $OpenBSD: ecs_local.h,v 1.2 2022/11/26 17:23:17 tb Exp $ */
 /*
  * Written by Nils Larsch for the OpenSSL project
  */
@@ -56,8 +56,8 @@
  *
  */
 
-#ifndef HEADER_ECS_LOCL_H
-#define HEADER_ECS_LOCL_H
+#ifndef HEADER_ECS_LOCAL_H
+#define HEADER_ECS_LOCAL_H
 
 #include <openssl/ecdsa.h>
 
@@ -96,4 +96,4 @@ ECDSA_SIG *ossl_ecdsa_sign_sig(const unsigned char *dgst, int dgst_len,
 
 __END_HIDDEN_DECLS
 
-#endif /* HEADER_ECS_LOCL_H */
+#endif /* !HEADER_ECS_LOCAL_H */
index ba34a79..3ffaf55 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: evp_local.h,v 1.1 2022/11/26 16:08:52 tb Exp $ */
+/* $OpenBSD: evp_local.h,v 1.2 2022/11/26 17:23:17 tb Exp $ */
 /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
  * project 2000.
  */
@@ -56,8 +56,8 @@
  *
  */
 
-#ifndef HEADER_EVP_LOCL_H
-#define HEADER_EVP_LOCL_H
+#ifndef HEADER_EVP_LOCAL_H
+#define HEADER_EVP_LOCAL_H
 
 __BEGIN_HIDDEN_DECLS
 
@@ -321,4 +321,4 @@ int EVP_PKEY_CTX_md(EVP_PKEY_CTX *ctx, int optype, int cmd, const char *md_name)
 
 __END_HIDDEN_DECLS
 
-#endif /* !HEADER_EVP_LOCL_H */
+#endif /* !HEADER_EVP_LOCAL_H */
index 1b31f74..830f141 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: gost_local.h,v 1.1 2022/11/26 16:08:53 tb Exp $ */
+/* $OpenBSD: gost_local.h,v 1.2 2022/11/26 17:23:18 tb Exp $ */
 /*
  * Copyright (c) 2014 Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
  * Copyright (c) 2005-2006 Cryptocom LTD
@@ -49,8 +49,8 @@
  * ====================================================================
  */
 
-#ifndef HEADER_GOST_LOCL_H
-#define HEADER_GOST_LOCL_H
+#ifndef HEADER_GOST_LOCAL_H
+#define HEADER_GOST_LOCAL_H
 
 #include <openssl/ec.h>
 #include <openssl/ecdsa.h>
@@ -114,4 +114,4 @@ extern int GostR3410_512_param_id(const char *value);
 
 __END_HIDDEN_DECLS
 
-#endif
+#endif /* !HEADER_GOST_LOCAL_H */
index 8723fdb..1d6f055 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: pkcs12_local.h,v 1.2 2022/09/11 17:30:13 tb Exp $ */
+/* $OpenBSD: pkcs12_local.h,v 1.3 2022/11/26 17:23:18 tb Exp $ */
 /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
  * project 1999.
  */
@@ -98,4 +98,4 @@ struct pkcs12_bag_st {
 
 __END_HIDDEN_DECLS
 
-#endif /* HEADER_PKCS12_LOCAL_H */
+#endif /* !HEADER_PKCS12_LOCAL_H */
index c934263..ad97f2c 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: sm2_local.h,v 1.1 2022/11/26 16:08:54 tb Exp $ */
+/*     $OpenBSD: sm2_local.h,v 1.2 2022/11/26 17:23:18 tb Exp $ */
 /*
  * Copyright (c) 2017, 2019 Ribose Inc
  *
@@ -15,8 +15,8 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#ifndef HEADER_SM2_LOCL_H
-#define HEADER_SM2_LOCL_H
+#ifndef HEADER_SM2_LOCAL_H
+#define HEADER_SM2_LOCAL_H
 
 #include <openssl/ec.h>
 #include <openssl/ecdsa.h>
@@ -39,5 +39,4 @@ int sm2_do_verify(const EC_KEY *key, const EVP_MD *digest,
 
 __END_HIDDEN_DECLS
 
-#endif
-
+#endif /* !HEADER_SM2_LOCAL_H */
index cf1e9e0..07c9861 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: ts_local.h,v 1.2 2022/09/11 17:31:19 tb Exp $ */
+/* $OpenBSD: ts_local.h,v 1.3 2022/11/26 17:23:18 tb Exp $ */
 /* Written by Zoltan Glozik (zglozik@opentsa.org) for the OpenSSL
  * project 2002, 2003, 2004.
  */
@@ -313,4 +313,4 @@ ESS_SIGNING_CERT_V2 *ESS_SIGNING_CERT_V2_dup(ESS_SIGNING_CERT_V2 *a);
 
 __END_HIDDEN_DECLS
 
-#endif /* HEADER_TS_LOCAL_H */
+#endif /* !HEADER_TS_LOCAL_H */
index d62c628..460b560 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: ui_local.h,v 1.1 2022/11/26 16:08:54 tb Exp $ */
+/* $OpenBSD: ui_local.h,v 1.2 2022/11/26 17:23:18 tb Exp $ */
 
 /* Written by Richard Levitte (richard@levitte.org) for the OpenSSL
  * project 2001.
@@ -57,8 +57,8 @@
  *
  */
 
-#ifndef HEADER_UI_LOCL_H
-#define HEADER_UI_LOCL_H
+#ifndef HEADER_UI_LOCAL_H
+#define HEADER_UI_LOCAL_H
 
 #include <openssl/ui.h>
 #include <openssl/crypto.h>
@@ -149,4 +149,4 @@ struct ui_st {
 
 __END_HIDDEN_DECLS
 
-#endif
+#endif /* !HEADER_UI_LOCAL_H */
index 1b1522a..b0c7a19 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: x509_local.h,v 1.1 2022/11/26 16:08:54 tb Exp $ */
+/*     $OpenBSD: x509_local.h,v 1.2 2022/11/26 17:23:18 tb Exp $ */
 /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
  * project 2013.
  */
@@ -56,8 +56,8 @@
  *
  */
 
-#ifndef HEADER_X509_LCL_H
-#define HEADER_X509_LCL_H
+#ifndef HEADER_X509_LOCAL_H
+#define HEADER_X509_LOCAL_H
 
 __BEGIN_HIDDEN_DECLS
 
@@ -377,4 +377,4 @@ int name_cmp(const char *name, const char *cmp);
 
 __END_HIDDEN_DECLS
 
-#endif /* !HEADER_X509_LCL_H */
+#endif /* !HEADER_X509_LOCAL_H */
index 27d3210..c7c413f 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: dtls_local.h,v 1.1 2022/11/26 16:08:55 tb Exp $ */
+/* $OpenBSD: dtls_local.h,v 1.2 2022/11/26 17:23:18 tb Exp $ */
 /*
  * DTLS implementation written by Nagendra Modadugu
  * (nagendra@cs.stanford.edu) for the OpenSSL project 2005.
@@ -229,4 +229,4 @@ int dtls1_get_record(SSL *s);
 
 __END_HIDDEN_DECLS
 
-#endif
+#endif /* !HEADER_DTLS_LOCL_H */
index 8590243..1e38d39 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssl_local.h,v 1.1 2022/11/26 16:08:55 tb Exp $ */
+/* $OpenBSD: ssl_local.h,v 1.2 2022/11/26 17:23:18 tb Exp $ */
 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  * All rights reserved.
  *
@@ -1535,4 +1535,4 @@ int tls_process_peer_certs(SSL *s, STACK_OF(X509) *peer_certs);
 
 __END_HIDDEN_DECLS
 
-#endif
+#endif /* !HEADER_SSL_LOCL_H */