diff options
author | lloyd <[email protected]> | 2013-07-01 15:07:11 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2013-07-01 15:07:11 +0000 |
commit | d2b4514152e606cc34cbb3239546ab2ebb0f2d71 (patch) | |
tree | 062eb80e61354106f1c00845dce7d7d534b9cffa | |
parent | 88a8df2808f8f086930b6fc6bca1849a330befbd (diff) |
Namespace AEAD header guards
-rw-r--r-- | src/aead/eax/eax.h | 4 | ||||
-rw-r--r-- | src/aead/gcm/gcm.h | 4 | ||||
-rw-r--r-- | src/aead/ocb/ocb.h | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/src/aead/eax/eax.h b/src/aead/eax/eax.h index f93e48d22..6815e3ce0 100644 --- a/src/aead/eax/eax.h +++ b/src/aead/eax/eax.h @@ -5,8 +5,8 @@ * Distributed under the terms of the Botan license */ -#ifndef BOTAN_EAX_H__ -#define BOTAN_EAX_H__ +#ifndef BOTAN_AEAD_EAX_H__ +#define BOTAN_AEAD_EAX_H__ #include <botan/aead.h> #include <botan/block_cipher.h> diff --git a/src/aead/gcm/gcm.h b/src/aead/gcm/gcm.h index f36aafc5f..e1479c27f 100644 --- a/src/aead/gcm/gcm.h +++ b/src/aead/gcm/gcm.h @@ -5,8 +5,8 @@ * Distributed under the terms of the Botan license */ -#ifndef BOTAN_GCM_H__ -#define BOTAN_GCM_H__ +#ifndef BOTAN_AEAD_GCM_H__ +#define BOTAN_AEAD_GCM_H__ #include <botan/aead.h> #include <botan/block_cipher.h> diff --git a/src/aead/ocb/ocb.h b/src/aead/ocb/ocb.h index c4d3c9588..ea7729348 100644 --- a/src/aead/ocb/ocb.h +++ b/src/aead/ocb/ocb.h @@ -5,8 +5,8 @@ * Distributed under the terms of the Botan license */ -#ifndef BOTAN_OCB_H__ -#define BOTAN_OCB_H__ +#ifndef BOTAN_AEAD_OCB_H__ +#define BOTAN_AEAD_OCB_H__ #include <botan/aead.h> #include <botan/block_cipher.h> |