Symbol: GHASH_CHUNK
crypto/openssl/crypto/modes/gcm128.c
1084
#if defined(GHASH_CHUNK)
crypto/openssl/crypto/modes/gcm128.c
1085
while (len >= GHASH_CHUNK) {
crypto/openssl/crypto/modes/gcm128.c
1086
size_t j = GHASH_CHUNK;
crypto/openssl/crypto/modes/gcm128.c
1088
GHASH(ctx, in, GHASH_CHUNK);
crypto/openssl/crypto/modes/gcm128.c
1109
len -= GHASH_CHUNK;
crypto/openssl/crypto/modes/gcm128.c
1310
#if defined(GHASH_CHUNK)
crypto/openssl/crypto/modes/gcm128.c
1311
while (len >= GHASH_CHUNK) {
crypto/openssl/crypto/modes/gcm128.c
1312
(*stream)(in, out, GHASH_CHUNK / 16, key, ctx->Yi.c);
crypto/openssl/crypto/modes/gcm128.c
1313
ctr += GHASH_CHUNK / 16;
crypto/openssl/crypto/modes/gcm128.c
1322
GHASH(ctx, out, GHASH_CHUNK);
crypto/openssl/crypto/modes/gcm128.c
1323
out += GHASH_CHUNK;
crypto/openssl/crypto/modes/gcm128.c
1324
in += GHASH_CHUNK;
crypto/openssl/crypto/modes/gcm128.c
1325
len -= GHASH_CHUNK;
crypto/openssl/crypto/modes/gcm128.c
1466
#if defined(GHASH_CHUNK)
crypto/openssl/crypto/modes/gcm128.c
1467
while (len >= GHASH_CHUNK) {
crypto/openssl/crypto/modes/gcm128.c
1468
GHASH(ctx, in, GHASH_CHUNK);
crypto/openssl/crypto/modes/gcm128.c
1469
(*stream)(in, out, GHASH_CHUNK / 16, key, ctx->Yi.c);
crypto/openssl/crypto/modes/gcm128.c
1470
ctr += GHASH_CHUNK / 16;
crypto/openssl/crypto/modes/gcm128.c
1479
out += GHASH_CHUNK;
crypto/openssl/crypto/modes/gcm128.c
1480
in += GHASH_CHUNK;
crypto/openssl/crypto/modes/gcm128.c
1481
len -= GHASH_CHUNK;
crypto/openssl/crypto/modes/gcm128.c
857
#if defined(GHASH_CHUNK)
crypto/openssl/crypto/modes/gcm128.c
858
while (len >= GHASH_CHUNK) {
crypto/openssl/crypto/modes/gcm128.c
859
size_t j = GHASH_CHUNK;
crypto/openssl/crypto/modes/gcm128.c
881
GHASH(ctx, out - GHASH_CHUNK, GHASH_CHUNK);
crypto/openssl/crypto/modes/gcm128.c
882
len -= GHASH_CHUNK;