aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/modes/aead/gcm/clmul/clmul.h
blob: a3d8d98518b427ceed44022b911e02381d6d1801 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
* CLMUL hook
* (C) 2013 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/

#ifndef BOTAN_GCM_CLMUL_H__
#define BOTAN_GCM_CLMUL_H__

#include <botan/types.h>

namespace Botan {

void gcm_multiply_clmul(byte x[16], const byte H[16]);

}

#endif