Home
last modified time | relevance | path

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

/titanic_50/usr/src/common/crypto/modes/
H A Dccm.c67 if (length + ctx->ccm_remainder_len < block_size) { in ccm_mode_encrypt_contiguous_blocks()
70 (uint8_t *)ctx->ccm_remainder + ctx->ccm_remainder_len, in ccm_mode_encrypt_contiguous_blocks()
72 ctx->ccm_remainder_len += length; in ccm_mode_encrypt_contiguous_blocks()
85 if (ctx->ccm_remainder_len > 0) { in ccm_mode_encrypt_contiguous_blocks()
86 need = block_size - ctx->ccm_remainder_len; in ccm_mode_encrypt_contiguous_blocks()
92 [ctx->ccm_remainder_len], need); in ccm_mode_encrypt_contiguous_blocks()
132 if (ctx->ccm_remainder_len > 0) { in ccm_mode_encrypt_contiguous_blocks()
134 ctx->ccm_remainder_len); in ccm_mode_encrypt_contiguous_blocks()
135 bcopy(blockp + ctx->ccm_remainder_len, datap, in ccm_mode_encrypt_contiguous_blocks()
158 if (ctx->ccm_remainder_len != 0) { in ccm_mode_encrypt_contiguous_blocks()
[all …]
H A Dmodes.h176 #define ccm_remainder_len ccm_common.cc_remainder_len macro