From 9332870c160d7a02f1bef6f249fa1baae196dc51 Mon Sep 17 00:00:00 2001 From: lloyd Date: Fri, 31 Jan 2014 22:28:19 +0000 Subject: Add header guard and fix amalgamation. Github issue 10. --- src/lib/modes/aead/gcm/clmul/clmul.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/lib') 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 namespace Botan { @@ -12,3 +15,5 @@ namespace Botan { void gcm_multiply_clmul(byte x[16], const byte H[16]); } + +#endif -- cgit v1.2.3