Lines Matching refs:cp
783 const SSL_CIPHER *cp; in ssl_cipher_apply_rule() local
821 cp = curr->cipher; in ssl_cipher_apply_rule()
828 if (strength_bits != cp->strength_bits) in ssl_cipher_apply_rule()
835 cp->name, in ssl_cipher_apply_rule()
836 (unsigned int)cp->algorithm_mkey, in ssl_cipher_apply_rule()
837 (unsigned int)cp->algorithm_auth, in ssl_cipher_apply_rule()
838 (unsigned int)cp->algorithm_enc, in ssl_cipher_apply_rule()
839 (unsigned int)cp->algorithm_mac, in ssl_cipher_apply_rule()
840 cp->min_tls, in ssl_cipher_apply_rule()
841 (unsigned int)cp->algo_strength); in ssl_cipher_apply_rule()
843 if (cipher_id != 0 && (cipher_id != cp->id)) in ssl_cipher_apply_rule()
845 if (alg_mkey && !(alg_mkey & cp->algorithm_mkey)) in ssl_cipher_apply_rule()
847 if (alg_auth && !(alg_auth & cp->algorithm_auth)) in ssl_cipher_apply_rule()
849 if (alg_enc && !(alg_enc & cp->algorithm_enc)) in ssl_cipher_apply_rule()
851 if (alg_mac && !(alg_mac & cp->algorithm_mac)) in ssl_cipher_apply_rule()
853 if (min_tls && (min_tls != cp->min_tls)) in ssl_cipher_apply_rule()
856 && !(algo_strength & SSL_STRONG_MASK & cp->algo_strength)) in ssl_cipher_apply_rule()
859 && !(algo_strength & SSL_DEFAULT_MASK & cp->algo_strength)) in ssl_cipher_apply_rule()