Lines Matching defs:cp
929 const SSL_CIPHER *cp;
961 cp = curr->cipher;
969 if (strength_bits != cp->strength_bits)
975 printf("\nName: %s:\nAlgo = %08lx/%08lx/%08lx/%08lx/%08lx Algo_strength = %08lx\n", cp->name, cp->algorithm_mkey, cp->algorithm_auth, cp->algorithm_enc, cp->algorithm_mac, cp->algorithm_ssl, cp->algo_strength);
978 if (alg_mkey && !(alg_mkey & cp->algorithm_mkey))
980 if (alg_auth && !(alg_auth & cp->algorithm_auth))
982 if (alg_enc && !(alg_enc & cp->algorithm_enc))
984 if (alg_mac && !(alg_mac & cp->algorithm_mac))
986 if (alg_ssl && !(alg_ssl & cp->algorithm_ssl))
988 if ((algo_strength & SSL_EXP_MASK) && !(algo_strength & SSL_EXP_MASK & cp->algo_strength))
990 if ((algo_strength & SSL_STRONG_MASK) && !(algo_strength & SSL_STRONG_MASK & cp->algo_strength))