Botan
1.11.15
|
00001 /* 00002 * CLMUL hook 00003 * (C) 2013 Jack Lloyd 00004 * 00005 * Botan is released under the Simplified BSD License (see license.txt) 00006 */ 00007 00008 #ifndef BOTAN_GCM_CLMUL_H__ 00009 #define BOTAN_GCM_CLMUL_H__ 00010 00011 #include <botan/types.h> 00012 00013 namespace Botan { 00014 00015 void gcm_multiply_clmul(byte x[16], const byte H[16]); 00016 00017 } 00018 00019 #endif