evp_cipher
return evp_cipher(ctx, out, out_len, in, in_len);
return evp_cipher(ctx, out, out_len, in, in_len);
if (!evp_cipher(ctx, out, &len, ctx->buf, block_size))
if (!evp_cipher(ctx, out, &len, in, in_len))
return evp_cipher(ctx, out, out_len, NULL, 0);
return evp_cipher(ctx, out, out_len, ctx->buf, block_size);
return evp_cipher(ctx, out, out_len, in, in_len);
return evp_cipher(ctx, out, out_len, NULL, 0);
const EVP_CIPHER *evp_cipher;
if ((evp_cipher = cipher->cipher()) == NULL)
fn(evp_cipher, cipher->name, NULL, arg);
const EVP_CIPHER *evp_cipher;
if ((evp_cipher = cipher->cipher()) == NULL)
obj_name->data = evp_cipher;
const EVP_CIPHER *evp_cipher = NULL;
evp_cipher = p7->d.signed_and_enveloped->enc_data->cipher;
if (evp_cipher == NULL) {
evp_cipher = p7->d.enveloped->enc_data->cipher;
if (evp_cipher == NULL) {
if (evp_cipher != NULL) {
keylen = EVP_CIPHER_key_length(evp_cipher);
ivlen = EVP_CIPHER_iv_length(evp_cipher);
xalg->algorithm = OBJ_nid2obj(EVP_CIPHER_type(evp_cipher));
if (EVP_CipherInit_ex(ctx, evp_cipher, NULL, NULL,
const EVP_CIPHER *evp_cipher = NULL;
evp_cipher = EVP_get_cipherbyobj(enc_alg->algorithm);
if (evp_cipher == NULL) {
evp_cipher = EVP_get_cipherbyobj(enc_alg->algorithm);
if (evp_cipher == NULL) {
if (evp_cipher != NULL) {
EVP_CIPHER_key_length(evp_cipher)) < 0)
if (EVP_CipherInit_ex(evp_ctx, evp_cipher, NULL, NULL,
const EVP_CIPHER *evp_cipher = NULL;
evp_cipher = EVP_get_cipherbyname(*argv);
if (!evp_cipher) {
if (!evp_cipher && !evp_md) {
if (evp_cipher) {
OBJ_nid2ln(EVP_CIPHER_nid(evp_cipher));
EVP_DecryptInit_ex(ctx, evp_cipher, NULL, key16, iv);
EVP_EncryptInit_ex(ctx, evp_cipher, NULL, key16, iv);