Home | History | Annotate | Download | only in ssl

Lines Matching defs:cp

851 	const SSL_CIPHER *cp;
883 cp = curr->cipher;
891 if (strength_bits != cp->strength_bits)
897 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);
900 if (alg_mkey && !(alg_mkey & cp->algorithm_mkey))
902 if (alg_auth && !(alg_auth & cp->algorithm_auth))
904 if (alg_enc && !(alg_enc & cp->algorithm_enc))
906 if (alg_mac && !(alg_mac & cp->algorithm_mac))
908 if (alg_ssl && !(alg_ssl & cp->algorithm_ssl))
910 if ((algo_strength & SSL_EXP_MASK) && !(algo_strength & SSL_EXP_MASK & cp->algo_strength))
912 if ((algo_strength & SSL_STRONG_MASK) && !(algo_strength & SSL_STRONG_MASK & cp->algo_strength))