diff options
author | Jack Lloyd <[email protected]> | 2017-09-20 02:53:08 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-09-20 02:53:08 -0400 |
commit | 8731d4920fa8b17374a442d62c2d8c1c6d34967a (patch) | |
tree | 0a0e98cf0c50e502397d920d8d4aa66f0036ce90 /src/lib/mac | |
parent | f7927e4081f1029e0b9c735cfff12ab1fc5f05b8 (diff) |
Change header guard format to BOTAN_FOO_H_
ISO C++ reserves names with double underscores in them
Closes #512
Diffstat (limited to 'src/lib/mac')
-rw-r--r-- | src/lib/mac/cbc_mac/cbc_mac.h | 4 | ||||
-rw-r--r-- | src/lib/mac/cmac/cmac.h | 4 | ||||
-rw-r--r-- | src/lib/mac/gmac/gmac.h | 4 | ||||
-rw-r--r-- | src/lib/mac/hmac/hmac.h | 4 | ||||
-rw-r--r-- | src/lib/mac/mac.h | 4 | ||||
-rw-r--r-- | src/lib/mac/poly1305/poly1305.h | 4 | ||||
-rw-r--r-- | src/lib/mac/siphash/siphash.h | 4 | ||||
-rw-r--r-- | src/lib/mac/x919_mac/x919_mac.h | 4 |
8 files changed, 16 insertions, 16 deletions
diff --git a/src/lib/mac/cbc_mac/cbc_mac.h b/src/lib/mac/cbc_mac/cbc_mac.h index efecc0472..aed3a8caf 100644 --- a/src/lib/mac/cbc_mac/cbc_mac.h +++ b/src/lib/mac/cbc_mac/cbc_mac.h @@ -5,8 +5,8 @@ * Botan is released under the Simplified BSD License (see license.txt) */ -#ifndef BOTAN_CBC_MAC_H__ -#define BOTAN_CBC_MAC_H__ +#ifndef BOTAN_CBC_MAC_H_ +#define BOTAN_CBC_MAC_H_ #include <botan/mac.h> #include <botan/block_cipher.h> diff --git a/src/lib/mac/cmac/cmac.h b/src/lib/mac/cmac/cmac.h index f3265d7ae..7c81272e8 100644 --- a/src/lib/mac/cmac/cmac.h +++ b/src/lib/mac/cmac/cmac.h @@ -5,8 +5,8 @@ * Botan is released under the Simplified BSD License (see license.txt) */ -#ifndef BOTAN_CMAC_H__ -#define BOTAN_CMAC_H__ +#ifndef BOTAN_CMAC_H_ +#define BOTAN_CMAC_H_ #include <botan/mac.h> #include <botan/block_cipher.h> diff --git a/src/lib/mac/gmac/gmac.h b/src/lib/mac/gmac/gmac.h index fef347cbf..64550d2b1 100644 --- a/src/lib/mac/gmac/gmac.h +++ b/src/lib/mac/gmac/gmac.h @@ -5,8 +5,8 @@ * Botan is released under the Simplified BSD License (see license.txt) */ -#ifndef BOTAN_GMAC_H__ -#define BOTAN_GMAC_H__ +#ifndef BOTAN_GMAC_H_ +#define BOTAN_GMAC_H_ #include <botan/gcm.h> #include <botan/mac.h> diff --git a/src/lib/mac/hmac/hmac.h b/src/lib/mac/hmac/hmac.h index dac56a8d2..253184895 100644 --- a/src/lib/mac/hmac/hmac.h +++ b/src/lib/mac/hmac/hmac.h @@ -5,8 +5,8 @@ * Botan is released under the Simplified BSD License (see license.txt) */ -#ifndef BOTAN_HMAC_H__ -#define BOTAN_HMAC_H__ +#ifndef BOTAN_HMAC_H_ +#define BOTAN_HMAC_H_ #include <botan/mac.h> #include <botan/hash.h> diff --git a/src/lib/mac/mac.h b/src/lib/mac/mac.h index 4c6ab602d..b072fbaa2 100644 --- a/src/lib/mac/mac.h +++ b/src/lib/mac/mac.h @@ -5,8 +5,8 @@ * Botan is released under the Simplified BSD License (see license.txt) */ -#ifndef BOTAN_MESSAGE_AUTH_CODE_BASE_H__ -#define BOTAN_MESSAGE_AUTH_CODE_BASE_H__ +#ifndef BOTAN_MESSAGE_AUTH_CODE_BASE_H_ +#define BOTAN_MESSAGE_AUTH_CODE_BASE_H_ #include <botan/buf_comp.h> #include <botan/sym_algo.h> diff --git a/src/lib/mac/poly1305/poly1305.h b/src/lib/mac/poly1305/poly1305.h index 55ec77241..aa94b5807 100644 --- a/src/lib/mac/poly1305/poly1305.h +++ b/src/lib/mac/poly1305/poly1305.h @@ -5,8 +5,8 @@ * Botan is released under the Simplified BSD License (see license.txt) */ -#ifndef BOTAN_MAC_POLY1305_H__ -#define BOTAN_MAC_POLY1305_H__ +#ifndef BOTAN_MAC_POLY1305_H_ +#define BOTAN_MAC_POLY1305_H_ #include <botan/mac.h> #include <memory> diff --git a/src/lib/mac/siphash/siphash.h b/src/lib/mac/siphash/siphash.h index 3405ef4e8..0e05c8407 100644 --- a/src/lib/mac/siphash/siphash.h +++ b/src/lib/mac/siphash/siphash.h @@ -5,8 +5,8 @@ * Botan is released under the Simplified BSD License (see license.txt) */ -#ifndef BOTAN_SIPHASH_H__ -#define BOTAN_SIPHASH_H__ +#ifndef BOTAN_SIPHASH_H_ +#define BOTAN_SIPHASH_H_ #include <botan/mac.h> diff --git a/src/lib/mac/x919_mac/x919_mac.h b/src/lib/mac/x919_mac/x919_mac.h index e922590ac..3da8048e4 100644 --- a/src/lib/mac/x919_mac/x919_mac.h +++ b/src/lib/mac/x919_mac/x919_mac.h @@ -5,8 +5,8 @@ * Botan is released under the Simplified BSD License (see license.txt) */ -#ifndef BOTAN_ANSI_X919_MAC_H__ -#define BOTAN_ANSI_X919_MAC_H__ +#ifndef BOTAN_ANSI_X919_MAC_H_ +#define BOTAN_ANSI_X919_MAC_H_ #include <botan/mac.h> #include <botan/block_cipher.h> |