Home | History | Annotate | Download | only in pkcs7

Lines Matching refs:evp_cipher

268 	const EVP_CIPHER *evp_cipher=NULL;
288 evp_cipher=p7->d.signed_and_enveloped->enc_data->cipher;
289 if (evp_cipher == NULL)
299 evp_cipher=p7->d.enveloped->enc_data->cipher;
300 if (evp_cipher == NULL)
325 if (evp_cipher != NULL)
338 keylen=EVP_CIPHER_key_length(evp_cipher);
339 ivlen=EVP_CIPHER_iv_length(evp_cipher);
340 xalg->algorithm = OBJ_nid2obj(EVP_CIPHER_type(evp_cipher));
344 if (EVP_CipherInit_ex(ctx, evp_cipher, NULL, NULL, NULL, 1)<=0)
427 const EVP_CIPHER *evp_cipher=NULL;
450 evp_cipher=EVP_get_cipherbyobj(enc_alg->algorithm);
451 if (evp_cipher == NULL)
461 evp_cipher=EVP_get_cipherbyobj(enc_alg->algorithm);
462 if (evp_cipher == NULL)
502 if (evp_cipher != NULL)
570 if (EVP_CipherInit_ex(evp_ctx,evp_cipher,NULL,NULL,NULL,0) <= 0)