Symbol: GHASH_CHUNK
crypto/libressl/crypto/modes/gcm128.c
1128
#if defined(GHASH) && defined(GHASH_CHUNK)
crypto/libressl/crypto/modes/gcm128.c
1129
while (len>=GHASH_CHUNK) {
crypto/libressl/crypto/modes/gcm128.c
1130
size_t j=GHASH_CHUNK;
crypto/libressl/crypto/modes/gcm128.c
1132
GHASH(ctx,in,GHASH_CHUNK);
crypto/libressl/crypto/modes/gcm128.c
1154
len -= GHASH_CHUNK;
crypto/libressl/crypto/modes/gcm128.c
1309
while (len>=GHASH_CHUNK) {
crypto/libressl/crypto/modes/gcm128.c
1310
(*stream)(in,out,GHASH_CHUNK/16,key,ctx->Yi.c);
crypto/libressl/crypto/modes/gcm128.c
1311
ctr += GHASH_CHUNK/16;
crypto/libressl/crypto/modes/gcm128.c
1321
GHASH(ctx,out,GHASH_CHUNK);
crypto/libressl/crypto/modes/gcm128.c
1322
out += GHASH_CHUNK;
crypto/libressl/crypto/modes/gcm128.c
1323
in += GHASH_CHUNK;
crypto/libressl/crypto/modes/gcm128.c
1324
len -= GHASH_CHUNK;
crypto/libressl/crypto/modes/gcm128.c
1429
while (len>=GHASH_CHUNK) {
crypto/libressl/crypto/modes/gcm128.c
1430
GHASH(ctx,in,GHASH_CHUNK);
crypto/libressl/crypto/modes/gcm128.c
1431
(*stream)(in,out,GHASH_CHUNK/16,key,ctx->Yi.c);
crypto/libressl/crypto/modes/gcm128.c
1432
ctr += GHASH_CHUNK/16;
crypto/libressl/crypto/modes/gcm128.c
1442
out += GHASH_CHUNK;
crypto/libressl/crypto/modes/gcm128.c
1443
in += GHASH_CHUNK;
crypto/libressl/crypto/modes/gcm128.c
1444
len -= GHASH_CHUNK;
crypto/libressl/crypto/modes/gcm128.c
944
#if defined(GHASH) && defined(GHASH_CHUNK)
crypto/libressl/crypto/modes/gcm128.c
945
while (len>=GHASH_CHUNK) {
crypto/libressl/crypto/modes/gcm128.c
946
size_t j=GHASH_CHUNK;
crypto/libressl/crypto/modes/gcm128.c
969
GHASH(ctx,out-GHASH_CHUNK,GHASH_CHUNK);
crypto/libressl/crypto/modes/gcm128.c
970
len -= GHASH_CHUNK;