Home | History | Annotate | Download | only in ssl

Lines Matching defs:cp

867   const SSL_CIPHER *cp;
904 cp = curr->cipher;
909 if (cipher_id != cp->id) {
913 if (strength_bits != SSL_CIPHER_get_bits(cp, NULL)) {
917 if (!(alg_mkey & cp->algorithm_mkey) ||
918 !(alg_auth & cp->algorithm_auth) ||
919 !(alg_enc & cp->algorithm_enc) ||
920 !(alg_mac & cp->algorithm_mac) ||
921 (min_version != 0 && SSL_CIPHER_get_min_version(cp) != min_version) ||
923 cp->algorithm_enc == SSL_eNULL) {