Lines Matching defs:tbl
30 unsigned char tbl[EVP_MAX_BLOCK_LENGTH];
72 OPENSSL_cleanse(ctx->tbl, EVP_MAX_BLOCK_LENGTH);
105 memcpy(out->tbl, in->tbl, bl);
123 memset(ctx->tbl, 0, EVP_CIPHER_CTX_get_block_size(ctx->cctx));
148 if (EVP_Cipher(ctx->cctx, ctx->tbl, zero_iv, bl) <= 0)
150 make_kn(ctx->k1, ctx->tbl, bl);
152 OPENSSL_cleanse(ctx->tbl, bl);
156 /* Zero tbl so resume works */
157 memset(ctx->tbl, 0, bl);
189 if (EVP_Cipher(ctx->cctx, ctx->tbl, ctx->last_block, bl) <= 0)
194 if (EVP_Cipher(ctx->cctx, ctx->tbl, data, bl) <= 0)
242 * The buffer "tbl" contains the last fully encrypted block which is the
248 return EVP_EncryptInit_ex(ctx->cctx, NULL, NULL, NULL, ctx->tbl);