Home
last modified time | relevance | path

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

/f-stack/freebsd/contrib/openzfs/module/icp/algs/modes/
H A Dctr.c63 lastp = (uint8_t *)ctx->ctr_cb; in ctr_mode_contiguous_blocks()
83 cipher(ctx->ctr_keysched, (uint8_t *)ctx->ctr_cb, in ctr_mode_contiguous_blocks()
91 lower_counter = ntohll(ctx->ctr_cb[1] & ctx->ctr_lower_mask); in ctr_mode_contiguous_blocks()
94 ctx->ctr_cb[1] = (ctx->ctr_cb[1] & ~(ctx->ctr_lower_mask)) | in ctr_mode_contiguous_blocks()
100 ntohll(ctx->ctr_cb[0] & ctx->ctr_upper_mask); in ctr_mode_contiguous_blocks()
103 ctx->ctr_cb[0] = in ctr_mode_contiguous_blocks()
104 (ctx->ctr_cb[0] & ~(ctx->ctr_upper_mask)) | in ctr_mode_contiguous_blocks()
166 encrypt_block(ctx->ctr_keysched, (uint8_t *)ctx->ctr_cb, in ctr_mode_final()
211 copy_block(cb, (uchar_t *)ctr_ctx->ctr_cb); in ctr_init_ctx()
212 ctr_ctx->ctr_lastp = (uint8_t *)&ctr_ctx->ctr_cb[0]; in ctr_init_ctx()
/f-stack/freebsd/contrib/openzfs/module/icp/include/modes/
H A Dmodes.h138 #define ctr_cb ctr_common.cc_iv macro