1 /*
2  * Copyright (C) 2018 Denys Vlasenko
3  *
4  * Licensed under GPLv2, see file LICENSE in this source tree.
5  */
6 
7 void aesgcm_GHASH(uint8_t* h,
8 	const uint8_t* a, //unsigned aSz,
9 	const uint8_t* c, unsigned cSz,
10 	uint8_t* s //, unsigned sSz
11 ) FAST_FUNC;
12