Lines Matching defs:cipher
22 /* Setup a cipher context from a PBE algorithm */
93 const EVP_CIPHER *cipher = NULL;
121 cipher = cipher_fetch = EVP_CIPHER_fetch(libctx, OBJ_nid2sn(cipher_nid), propq);
123 if (cipher == NULL)
124 cipher = EVP_get_cipherbynid(cipher_nid);
125 if (cipher == NULL) {
151 ret = keygen_ex(ctx, pass, passlen, param, cipher, md, en_de, libctx, propq);
153 ret = keygen(ctx, pass, passlen, param, cipher, md, en_de);
223 int EVP_PBE_alg_add(int nid, const EVP_CIPHER *cipher, const EVP_MD *md,
228 if (cipher)
229 cipher_nid = EVP_CIPHER_get_nid(cipher);