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

#ifndef BOTAN_GCM_PMULL_H_
#define BOTAN_GCM_PMULL_H_

#include <botan/types.h>

namespace Botan {

void gcm_multiply_pmull(uint8_t x[16], const uint8_t H[16]);

}

#endif