aboutsummaryrefslogtreecommitdiffstats
path: root/src/constructs/aont
diff options
context:
space:
mode:
authorlloyd <[email protected]>2009-12-02 22:11:28 +0000
committerlloyd <[email protected]>2009-12-02 22:11:28 +0000
commitf63359f348d347bebee036b11d0c9641ee3d56d6 (patch)
treea6a270d7e0d2fcbef7224796c4019a3fff2a0da4 /src/constructs/aont
parentf52637d5e6b3ae820130b0053091e8fd4da74a02 (diff)
Add missing header guards to package.h and botan.h
Change serp_simd_sbox.h's header guard to use the leading BOTAN_ prefix for proper macro namespacing.
Diffstat (limited to 'src/constructs/aont')
-rw-r--r--src/constructs/aont/package.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/constructs/aont/package.h b/src/constructs/aont/package.h
index 35d2a23fc..5024c0421 100644
--- a/src/constructs/aont/package.h
+++ b/src/constructs/aont/package.h
@@ -6,6 +6,9 @@
* Distributed under the terms of the Botan license
*/
+#ifndef BOTAN_AONT_PACKAGE_TRANSFORM_H__
+#define BOTAN_AONT_PACKAGE_TRANSFORM_H__
+
#include <botan/block_cipher.h>
#include <botan/rng.h>
@@ -43,3 +46,5 @@ void unpackage(BlockCipher* cipher,
}
}
+
+#endif