Home | History | Annotate | Download | only in ssl

Lines Matching refs:cert

183 	if (s->cert == NULL)
479 && (s->cert->pkeys[SSL_PKEY_RSA_ENC].privatekey == NULL
481 && EVP_PKEY_size(s->cert->pkeys[SSL_PKEY_RSA_ENC].privatekey)*8 > SSL_C_EXPORT_PKEYLENGTH(s->s3->tmp.new_cipher)
500 if (/* don't request cert unless asked for it: */
503 * don't request cert during re-negotiation: */
506 /* never request cert in anonymous ciphersuites
513 /* never request cert in Kerberos ciphersuites */
519 /* no cert request */
649 * a client cert, it can be verified */
1063 CERT *cert;
1073 cert=s->cert;
1082 rsa=cert->rsa_tmp;
1083 if ((rsa == NULL) && (s->cert->rsa_tmp_cb != NULL))
1085 rsa=s->cert->rsa_tmp_cb(s,
1095 cert->rsa_tmp=rsa;
1112 dhp=cert->dh_tmp;
1113 if ((dhp == NULL) && (s->cert->dh_tmp_cb != NULL))
1114 dhp=s->cert->dh_tmp_cb(s,
1171 ecdhp=cert->ecdh_tmp;
1172 if ((ecdhp == NULL) && (s->cert->ecdh_tmp_cb != NULL))
1174 ecdhp=s->cert->ecdh_tmp_cb(s,
1501 /* get the list of acceptable cert types */
1597 /* VRS: allow null cert if auth == KRB5 */