aboutsummaryrefslogtreecommitdiffstats
path: root/src/modes/aead/gcm/clmul/clmul.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/modes/aead/gcm/clmul/clmul.h')
-rw-r--r--src/modes/aead/gcm/clmul/clmul.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/modes/aead/gcm/clmul/clmul.h b/src/modes/aead/gcm/clmul/clmul.h
new file mode 100644
index 000000000..ba197f2f7
--- /dev/null
+++ b/src/modes/aead/gcm/clmul/clmul.h
@@ -0,0 +1,14 @@
+/*
+* CLMUL hook
+* (C) 2013 Jack Lloyd
+*
+* Distributed under the terms of the Botan license
+*/
+
+#include <botan/types.h>
+
+namespace Botan {
+
+void gcm_multiply_clmul(byte x[16], const byte H[16]);
+
+}