blob: ba197f2f71af5976ce86170b198422d764506f7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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]);
}
|