Lines Matching defs:cipher
38 {"v1", OPT_V1, 's', "Use PKCS#5 v1.5 and cipher"},
39 {"v2", OPT_V2, 's', "Use PKCS#5 v2.0 and cipher"},
77 EVP_CIPHER *cipher = NULL;
156 if (cipher == NULL)
157 cipher = (EVP_CIPHER *)EVP_aes_256_cbc();
176 if (cipher == NULL)
177 cipher = (EVP_CIPHER *)EVP_aes_256_cbc();
205 if (!opt_cipher(ciphername, &cipher))
214 if ((pbe_nid == -1) && cipher == NULL)
215 cipher = (EVP_CIPHER *)EVP_aes_256_cbc();
246 if (cipher) {
249 pbe = PKCS5_pbe2_set_scrypt(cipher, NULL, 0, NULL,
253 pbe = PKCS5_pbe2_set_iv(cipher, iter, NULL, 0, NULL,
373 EVP_CIPHER_free(cipher);