Home
last modified time | relevance | path

Searched refs:gcm_tmp (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/common/crypto/modes/
H A Dgcm.c185 (uint8_t *)ctx->gcm_tmp); in gcm_encrypt_block()
186 xor_block(blockp, (uint8_t *)ctx->gcm_tmp); in gcm_encrypt_block()
196 uint8_t *tmpp = (uint8_t *)ctx->gcm_tmp; in gcm_encrypt_block()
281 GHASH(ctx, ctx->gcm_tmp, ctx->gcm_ghash); in gcm_mode_encrypt_contiguous_blocks()
329 uint8_t *tmpp = (uint8_t *)ctx->gcm_tmp; in gcm_encrypt_final()
345 (uint8_t *)ctx->gcm_tmp); in gcm_encrypt_final()
473 counterp = (uint8_t *)ctx->gcm_tmp; in gcm_decrypt_incomplete_block()
476 bzero((uint8_t *)ctx->gcm_tmp, block_size); in gcm_decrypt_incomplete_block()
477 bcopy(datap, (uint8_t *)ctx->gcm_tmp, ctx->gcm_remainder_len); in gcm_decrypt_incomplete_block()
480 GHASH(ctx, ctx->gcm_tmp, ctx->gcm_ghash); in gcm_decrypt_incomplete_block()
[all …]
H A Dmodes.h224 uint32_t gcm_tmp[4]; member