Lines Matching defs:evp_cipher
193 static void multiblock_speed(const EVP_CIPHER *evp_cipher, int lengths_single,
1349 EVP_CIPHER *evp_cipher = NULL;
1506 if (!opt_cipher_silent(opt_arg(), &evp_cipher)) {
1510 if (evp_cipher == NULL && evp_md_name == NULL) {
1730 if (evp_cipher == NULL) {
1733 } else if (!(EVP_CIPHER_get_flags(evp_cipher) &
1736 EVP_CIPHER_get0_name(evp_cipher));
1741 if (evp_cipher == NULL) {
1745 } else if (!(EVP_CIPHER_get_flags(evp_cipher) &
1748 EVP_CIPHER_get0_name(evp_cipher));
2199 if (evp_cipher != NULL) {
2202 if (multiblock && (EVP_CIPHER_get_flags(evp_cipher) &
2204 multiblock_speed(evp_cipher, lengths_single, &seconds);
2209 names[D_EVP] = EVP_CIPHER_get0_name(evp_cipher);
2211 if (EVP_CIPHER_get_mode(evp_cipher) == EVP_CIPH_CCM_MODE) {
2213 } else if (aead && (EVP_CIPHER_get_flags(evp_cipher) &
2232 if (!EVP_CipherInit_ex(loopargs[k].ctx, evp_cipher, NULL,
2242 loopargs[k].key = app_malloc(keylen, "evp_cipher key");
2253 if (EVP_CIPHER_get_mode(evp_cipher) == EVP_CIPH_SIV_MODE)
3351 EVP_CIPHER_free(evp_cipher);
3605 static void multiblock_speed(const EVP_CIPHER *evp_cipher, int lengths_single,
3626 if (!EVP_EncryptInit_ex(ctx, evp_cipher, NULL, NULL, no_iv))
3633 key = app_malloc(keylen, "evp_cipher key");
3643 if ((alg_name = EVP_CIPHER_get0_name(evp_cipher)) == NULL)