aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlloyd <[email protected]>2014-01-31 22:28:19 +0000
committerlloyd <[email protected]>2014-01-31 22:28:19 +0000
commit9332870c160d7a02f1bef6f249fa1baae196dc51 (patch)
tree638b2fe6a8cc5c01f15e2426a0e7ae2ecf27e1ed
parent19cf90aa74efdf6c03eca29717d6d5ac91c8d221 (diff)
Add header guard and fix amalgamation. Github issue 10.
-rw-r--r--src/lib/modes/aead/gcm/clmul/clmul.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib/modes/aead/gcm/clmul/clmul.h b/src/lib/modes/aead/gcm/clmul/clmul.h
index ba197f2f7..6bcc0e2a0 100644
--- a/src/lib/modes/aead/gcm/clmul/clmul.h
+++ b/src/lib/modes/aead/gcm/clmul/clmul.h
@@ -5,6 +5,9 @@
* Distributed under the terms of the Botan license
*/
+#ifndef BOTAN_GCM_CLMUL_H__
+#define BOTAN_GCM_CLMUL_H__
+
#include <botan/types.h>
namespace Botan {
@@ -12,3 +15,5 @@ namespace Botan {
void gcm_multiply_clmul(byte x[16], const byte H[16]);
}
+
+#endif