Lines Matching defs:cipher
47 const char *cipher;
66 const apr_crypto_t *f, apr_crypto_block_key_type_e **cipher,
80 *cipher = apr_hash_get(ciphers, dconf->cipher, APR_HASH_KEY_STRING);
81 if (!(*cipher)) {
108 "cipher '%s' not recognised by crypto driver. "
109 "session encryption not possible, options: %s", dconf->cipher, options);
136 apr_crypto_block_key_type_e *cipher;
149 res = crypt_init(r, f, &cipher, dconf);
159 *cipher, APR_MODE_CBC, 1, 4096, f, r->pool);
166 "padding is not supported for cipher");
236 apr_crypto_block_key_type_e *cipher;
244 res = crypt_init(r, f, &cipher, dconf);
259 *cipher, APR_MODE_CBC, 1, 4096, f, r->pool);
267 "padding is not supported for cipher");
489 /* default cipher AES256-SHA */
490 new->cipher = "aes256";
503 new->cipher = (add->cipher_set == 0) ? base->cipher : add->cipher;
601 static const char *set_crypto_cipher(cmd_parms * cmd, void *config, const char *cipher)
605 dconf->cipher = cipher;
618 "The underlying crypto cipher to use"),