aboutsummaryrefslogtreecommitdiffstats
path: root/src/modes/aead/gcm/clmul/clmul.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2013-12-27 23:37:14 +0000
committerlloyd <[email protected]>2013-12-27 23:37:14 +0000
commitadad731c0e01c779002551adfb7d74c9da44f6ef (patch)
treee4d5d3fd02bd80345e577ecc2108319d0394a407 /src/modes/aead/gcm/clmul/clmul.h
parent0b0bf718138a0df6457e6c03ee7605b51a6b07a2 (diff)
Move clmul to its own file (for abi flags)
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]);
+
+}