EVP_EncryptInit_ex2
if (!EVP_EncryptInit_ex2(ctx->cctx, NULL, NULL, zero_iv, param))
if (!EVP_EncryptInit_ex2(ctx->cctx, cipher, NULL, NULL, param))
if (!EVP_EncryptInit_ex2(ctx->cctx, NULL, key, zero_iv, param))
if (!EVP_EncryptInit_ex2(ctx->cctx, NULL, NULL, zero_iv, param))
if (!EVP_EncryptInit_ex2(ctx, cipher, NULL, NULL, params))
if (!EVP_EncryptInit_ex2(ctx, cipher, gcm_key, gcm_iv, params))
if (!EVP_EncryptInit_ex2(ctx, cipher, wrap_key, wrap_iv, /* params */ NULL))
if (!EVP_EncryptInit_ex2(ctx, cipher, cbc_key, cbc_iv, /* params */ NULL))
if (!EVP_EncryptInit_ex2(ctx, evp_cipher, key, iv, NULL)) {
__owur int EVP_EncryptInit_ex2(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
if (!EVP_EncryptInit_ex2(ctx->ecb_ctx, ecb, ctx->key_gen_key, NULL, NULL))
if (!EVP_EncryptInit_ex2(ctx->ecb_ctx, ecb, ctx->msg_enc_key, NULL, NULL))
if (!EVP_EncryptInit_ex2(srtm->blind_ctx, ecb, key, NULL, NULL))
if (EVP_EncryptInit_ex2(ctx, cipher, (uint8_t *)key, (uint8_t *)counter, NULL) == 0)
if (!TEST_true(EVP_EncryptInit_ex2(ctx, cipher, gcm_key, gcm_iv, params))
if (!TEST_true(EVP_EncryptInit_ex2(ctx, cipher, rc4_key, NULL, params))
if (!TEST_int_eq(EVP_EncryptInit_ex2(ctx, cipher, key, iv, NULL), 1))