Botan  2.1.0
Crypto and TLS for C++11
clmul.h
Go to the documentation of this file.
1 /*
2 * CLMUL hook
3 * (C) 2013 Jack Lloyd
4 *
5 * Botan is released under the Simplified BSD License (see license.txt)
6 */
7 
8 #ifndef BOTAN_GCM_CLMUL_H__
9 #define BOTAN_GCM_CLMUL_H__
10 
11 #include <botan/types.h>
12 
13 namespace Botan {
14 
15 void gcm_multiply_clmul(uint8_t x[16], const uint8_t H[16]);
16 
17 }
18 
19 #endif
void gcm_multiply_clmul(uint8_t x[16], const uint8_t H[16])
Definition: clmul.cpp:15
Definition: alg_id.cpp:13