Home
last modified time | relevance | path

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

/freebsd/sys/contrib/openzfs/module/icp/algs/modes/
H A Dgcm.c151 (uint8_t *)ctx->gcm_tmp); in gcm_mode_encrypt_contiguous_blocks()
152 xor_block(blockp, (uint8_t *)ctx->gcm_tmp); in gcm_mode_encrypt_contiguous_blocks()
154 lastp = (uint8_t *)ctx->gcm_tmp; in gcm_mode_encrypt_contiguous_blocks()
176 GHASH(ctx, ctx->gcm_tmp, ctx->gcm_ghash, gops); in gcm_mode_encrypt_contiguous_blocks()
229 uint8_t *tmpp = (uint8_t *)ctx->gcm_tmp; in gcm_encrypt_final()
245 (uint8_t *)ctx->gcm_tmp); in gcm_encrypt_final()
309 counterp = (uint8_t *)ctx->gcm_tmp; in gcm_decrypt_incomplete_block()
312 memset((uint8_t *)ctx->gcm_tmp, 0, block_size); in gcm_decrypt_incomplete_block()
313 memcpy((uint8_t *)ctx->gcm_tmp, datap, ctx->gcm_remainder_len); in gcm_decrypt_incomplete_block()
316 GHASH(ctx, ctx->gcm_tmp, ctx->gcm_ghash, gcm_impl_get_ops()); in gcm_decrypt_incomplete_block()
[all …]
H A Dmodes.c185 explicit_memset(ctx->gcm_tmp, 0, sizeof (ctx->gcm_tmp)); in gcm_clear_ctx()
/freebsd/sys/contrib/openzfs/module/icp/include/modes/
H A Dmodes.h161 uint32_t gcm_tmp[4]; member