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/stream | |
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/stream')
-rw-r--r-- | src/lib/stream/chacha/chacha.h | 4 | ||||
-rw-r--r-- | src/lib/stream/ctr/ctr.h | 4 | ||||
-rw-r--r-- | src/lib/stream/ofb/ofb.h | 4 | ||||
-rw-r--r-- | src/lib/stream/rc4/rc4.h | 4 | ||||
-rw-r--r-- | src/lib/stream/salsa20/salsa20.h | 4 | ||||
-rw-r--r-- | src/lib/stream/shake_cipher/shake_cipher.h | 4 | ||||
-rw-r--r-- | src/lib/stream/stream_cipher.h | 4 |
7 files changed, 14 insertions, 14 deletions
diff --git a/src/lib/stream/chacha/chacha.h b/src/lib/stream/chacha/chacha.h index cbe8a7d25..e53ae9e8c 100644 --- a/src/lib/stream/chacha/chacha.h +++ b/src/lib/stream/chacha/chacha.h @@ -5,8 +5,8 @@ * Botan is released under the Simplified BSD License (see license.txt) */ -#ifndef BOTAN_CHACHA_H__ -#define BOTAN_CHACHA_H__ +#ifndef BOTAN_CHACHA_H_ +#define BOTAN_CHACHA_H_ #include <botan/stream_cipher.h> diff --git a/src/lib/stream/ctr/ctr.h b/src/lib/stream/ctr/ctr.h index a91ce65c7..e7b88bf5e 100644 --- a/src/lib/stream/ctr/ctr.h +++ b/src/lib/stream/ctr/ctr.h @@ -5,8 +5,8 @@ * Botan is released under the Simplified BSD License (see license.txt) */ -#ifndef BOTAN_CTR_BE_H__ -#define BOTAN_CTR_BE_H__ +#ifndef BOTAN_CTR_BE_H_ +#define BOTAN_CTR_BE_H_ #include <botan/block_cipher.h> #include <botan/stream_cipher.h> diff --git a/src/lib/stream/ofb/ofb.h b/src/lib/stream/ofb/ofb.h index 5be3da44c..e1f538984 100644 --- a/src/lib/stream/ofb/ofb.h +++ b/src/lib/stream/ofb/ofb.h @@ -5,8 +5,8 @@ * Botan is released under the Simplified BSD License (see license.txt) */ -#ifndef BOTAN_OUTPUT_FEEDBACK_MODE_H__ -#define BOTAN_OUTPUT_FEEDBACK_MODE_H__ +#ifndef BOTAN_OUTPUT_FEEDBACK_MODE_H_ +#define BOTAN_OUTPUT_FEEDBACK_MODE_H_ #include <botan/stream_cipher.h> #include <botan/block_cipher.h> diff --git a/src/lib/stream/rc4/rc4.h b/src/lib/stream/rc4/rc4.h index 5d6ce520e..796e8d9f9 100644 --- a/src/lib/stream/rc4/rc4.h +++ b/src/lib/stream/rc4/rc4.h @@ -5,8 +5,8 @@ * Botan is released under the Simplified BSD License (see license.txt) */ -#ifndef BOTAN_RC4_H__ -#define BOTAN_RC4_H__ +#ifndef BOTAN_RC4_H_ +#define BOTAN_RC4_H_ #include <botan/stream_cipher.h> #include <botan/types.h> diff --git a/src/lib/stream/salsa20/salsa20.h b/src/lib/stream/salsa20/salsa20.h index 55f6f4250..a9a68c537 100644 --- a/src/lib/stream/salsa20/salsa20.h +++ b/src/lib/stream/salsa20/salsa20.h @@ -5,8 +5,8 @@ * Botan is released under the Simplified BSD License (see license.txt) */ -#ifndef BOTAN_SALSA20_H__ -#define BOTAN_SALSA20_H__ +#ifndef BOTAN_SALSA20_H_ +#define BOTAN_SALSA20_H_ #include <botan/stream_cipher.h> diff --git a/src/lib/stream/shake_cipher/shake_cipher.h b/src/lib/stream/shake_cipher/shake_cipher.h index ce7cc14ee..12f2e780b 100644 --- a/src/lib/stream/shake_cipher/shake_cipher.h +++ b/src/lib/stream/shake_cipher/shake_cipher.h @@ -5,8 +5,8 @@ * Botan is released under the Simplified BSD License (see license.txt) */ -#ifndef BOTAN_SHAKE128_CIPHER_H__ -#define BOTAN_SHAKE128_CIPHER_H__ +#ifndef BOTAN_SHAKE128_CIPHER_H_ +#define BOTAN_SHAKE128_CIPHER_H_ #include <botan/stream_cipher.h> #include <botan/secmem.h> diff --git a/src/lib/stream/stream_cipher.h b/src/lib/stream/stream_cipher.h index 1f46a453c..31fa5b3b0 100644 --- a/src/lib/stream/stream_cipher.h +++ b/src/lib/stream/stream_cipher.h @@ -5,8 +5,8 @@ * Botan is released under the Simplified BSD License (see license.txt) */ -#ifndef BOTAN_STREAM_CIPHER_H__ -#define BOTAN_STREAM_CIPHER_H__ +#ifndef BOTAN_STREAM_CIPHER_H_ +#define BOTAN_STREAM_CIPHER_H_ #include <botan/sym_algo.h> #include <string> |