Home | History | Annotate | Download | only in cmac

Lines Matching defs:tbl

72 	unsigned char tbl[EVP_MAX_BLOCK_LENGTH];
118 OPENSSL_cleanse(ctx->tbl, EVP_MAX_BLOCK_LENGTH);
146 memcpy(out->tbl, in->tbl, bl);
182 memset(ctx->tbl, 0, EVP_CIPHER_CTX_block_size(&ctx->cctx));
200 if (!EVP_Cipher(&ctx->cctx, ctx->tbl, zero_iv, bl))
202 make_kn(ctx->k1, ctx->tbl, bl);
204 OPENSSL_cleanse(ctx->tbl, bl);
208 /* Zero tbl so resume works */
209 memset(ctx->tbl, 0, bl);
243 if (!EVP_Cipher(&ctx->cctx, ctx->tbl, ctx->last_block,bl))
249 if (!EVP_Cipher(&ctx->cctx, ctx->tbl, data, bl))
301 /* The buffer "tbl" containes the last fully encrypted block
307 return EVP_EncryptInit_ex(&ctx->cctx, NULL, NULL, NULL, ctx->tbl);