Home
last modified time | relevance | path

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

/src/sys/contrib/openzfs/module/icp/algs/modes/
H A Dgcm.c160 ctx->gcm_processed_data_len += block_size; in gcm_mode_encrypt_contiguous_blocks()
263 ctx->gcm_processed_data_len += ctx->gcm_remainder_len; in gcm_encrypt_final()
267 htonll(CRYPTO_BYTES2BITS(ctx->gcm_processed_data_len)); in gcm_encrypt_final()
365 memcpy(&ctx->gcm_pt_buf[ctx->gcm_processed_data_len], data, in gcm_mode_decrypt_contiguous_blocks()
367 ctx->gcm_processed_data_len += length; in gcm_mode_decrypt_contiguous_blocks()
394 ASSERT(ctx->gcm_processed_data_len == ctx->gcm_pt_buf_len); in gcm_decrypt_final()
397 pt_len = ctx->gcm_processed_data_len - ctx->gcm_tag_len; in gcm_decrypt_final()
619 gcm_ctx->gcm_processed_data_len = 0; in gcm_init_ctx()
1306 ctx->gcm_processed_data_len += block_size; in gcm_mode_encrypt_contiguous_blocks_avx()
1330 ctx->gcm_processed_data_len += chunk_size; in gcm_mode_encrypt_contiguous_blocks_avx()
[all …]
/src/sys/contrib/openzfs/module/icp/include/modes/
H A Dmodes.h169 size_t gcm_processed_data_len; member