Home | History | Annotate | Download | only in apps

Lines Matching refs:cipher

122 	const EVP_CIPHER *cipher=NULL,*c;
152 cipher=EVP_get_cipherbyname(pname);
154 if (!do_zlib && !base64 && (cipher == NULL)
157 if (!base64 && (cipher == NULL) && (strcmp(pname,"enc") != 0))
160 BIO_printf(bio_err,"%s is an unknown cipher\n",pname);
290 cipher=c;
293 cipher=NULL;
318 BIO_printf(bio_err,"Cipher Types\n");
334 if (cipher && EVP_CIPHER_flags(cipher) & EVP_CIPH_FLAG_AEAD_CIPHER)
428 if ((str == NULL) && (cipher != NULL) && (hkey == NULL))
435 OBJ_nid2ln(EVP_CIPHER_nid(cipher)),
514 if (cipher != NULL)
561 EVP_BytesToKey(cipher,dgst,sptr,
579 && EVP_CIPHER_iv_length(cipher) != 0)
606 if (!EVP_CipherInit_ex(ctx, cipher, NULL, NULL, NULL, enc))
608 BIO_printf(bio_err, "Error setting cipher %s\n",
609 EVP_CIPHER_name(cipher));
619 BIO_printf(bio_err, "Error setting cipher %s\n",
620 EVP_CIPHER_name(cipher));
640 if (cipher->key_len > 0)
643 for (i=0; i<cipher->key_len; i++)
647 if (cipher->iv_len > 0)
650 for (i=0; i<cipher->iv_len; i++)