ecc9090cfc
function old new delta xwrite_encrypted 604 599 -5 FlattenSzInBits 52 - -52 aesgcm_GHASH 395 262 -133 ------------------------------------------------------------------------------ (add/remove: 0/1 grow/shrink: 0/2 up/down: 0/-190) Total: -190 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
14 lines
320 B
C
14 lines
320 B
C
/*
|
|
* Copyright (C) 2018 Denys Vlasenko
|
|
*
|
|
* Licensed under GPLv2, see file LICENSE in this source tree.
|
|
*/
|
|
|
|
void xorbuf(void* buf, const void* mask, unsigned count) FAST_FUNC;
|
|
|
|
void aesgcm_GHASH(uint8_t* h,
|
|
const uint8_t* a, //unsigned aSz,
|
|
const uint8_t* c, unsigned cSz,
|
|
uint8_t* s //, unsigned sSz
|
|
) FAST_FUNC;
|