Lines Matching defs:cipher
28 pc->cipher = NULL;
46 dst->cipher = src->cipher;
112 pc->cipher = pc->alloc_cipher = EVP_CIPHER_fetch(ctx, p->data, propquery);
114 if (pc->cipher == NULL) {
115 const EVP_CIPHER *cipher;
117 cipher = EVP_get_cipherbyname(p->data);
119 if (cipher != NULL && cipher->origin != EVP_ORIG_GLOBAL)
120 pc->cipher = cipher;
123 if (pc->cipher != NULL)
127 return pc->cipher != NULL;
132 return pc->cipher;