Searched refs:ccm_pt_buf (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/common/crypto/modes/
H A Dmodes.c201 if (((ccm_ctx_t *)ctx)->ccm_pt_buf != NULL)
202 kmem_free(((ccm_ctx_t *)ctx)->ccm_pt_buf,
207 if (((ccm_ctx_t *)ctx)->ccm_pt_buf != NULL)
208 free(((ccm_ctx_t *)ctx)->ccm_pt_buf);
H A Dccm.c341 outp = &((ctx->ccm_pt_buf)[ctx->ccm_processed_data_len]);
483 resultp = (uint8_t *)ctx->ccm_pt_buf +
543 pt = ctx->ccm_pt_buf;
575 rv = crypto_put_output_data(ctx->ccm_pt_buf, out, pt_len);
895 ccm_ctx->ccm_pt_buf = kmem_alloc(ccm_ctx->ccm_data_len,
898 ccm_ctx->ccm_pt_buf = malloc(ccm_ctx->ccm_data_len);
900 if (ccm_ctx->ccm_pt_buf == NULL) {
H A Dmodes.h153 * ccm_pt_buf: Only used in CCM mode decrypt. It stores the
167 uint8_t *ccm_pt_buf; member in struct:ccm_ctx
250 #define ac_pt_buf acu.acu_ccm.ccm_pt_buf

Completed in 47 milliseconds