Lines Matching refs:tbl
30 unsigned char tbl[EVP_MAX_BLOCK_LENGTH]; member
72 OPENSSL_cleanse(ctx->tbl, EVP_MAX_BLOCK_LENGTH); in CMAC_CTX_cleanup()
105 memcpy(out->tbl, in->tbl, bl); in CMAC_CTX_copy()
123 memset(ctx->tbl, 0, EVP_CIPHER_CTX_get_block_size(ctx->cctx)); in CMAC_Init()
148 if (EVP_Cipher(ctx->cctx, ctx->tbl, zero_iv, bl) <= 0) in CMAC_Init()
150 make_kn(ctx->k1, ctx->tbl, bl); in CMAC_Init()
152 OPENSSL_cleanse(ctx->tbl, bl); in CMAC_Init()
157 memset(ctx->tbl, 0, bl); in CMAC_Init()
189 if (EVP_Cipher(ctx->cctx, ctx->tbl, ctx->last_block, bl) <= 0) in CMAC_Update()
194 if (EVP_Cipher(ctx->cctx, ctx->tbl, data, bl) <= 0) in CMAC_Update()
248 return EVP_EncryptInit_ex(ctx->cctx, NULL, NULL, NULL, ctx->tbl); in CMAC_resume()