aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/modes/aead/gcm/clmul/clmul.h
blob: b47c73f273259fd3e51ff262c1279288a46e9eb1 (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(uint8_t x[16], const uint8_t H[16]);

}

#endif