Lines Matching defs:cert
198 * cert.
343 && s->cert->psk_identity_hint)
368 /* don't request cert unless asked for it: */
377 * if SSL_VERIFY_CLIENT_ONCE is set, don't request cert
383 * never request cert in anonymous ciphersuites (see
2075 if (s->s3.tmp.cert != NULL) {
2080 s->cert->key = s->s3.tmp.cert;
2200 /* Let cert callback update server certificates if required */
2201 if (!s->hit && s->cert->cert_cb != NULL) {
2202 int rv = s->cert->cert_cb(s, s->cert->cert_cb_arg);
2454 CERT *cert = s->cert;
2457 if (s->cert->dh_tmp_auto) {
2465 pkdhp = cert->dh_tmp;
2468 if ((pkdhp == NULL) && (s->cert->dh_tmp_cb != NULL)) {
2469 pkdh = ssl_dh_to_pkey(s->cert->dh_tmp_cb(s, 0, 1024));
2580 size_t len = (s->cert->psk_identity_hint == NULL)
2581 ? 0 : strlen(s->cert->psk_identity_hint);
2588 || !WPACKET_sub_memcpy_u16(pkt, s->cert->psk_identity_hint,
2658 EVP_PKEY *pkey = s->s3.tmp.cert->privatekey;
2767 /* get the list of acceptable cert types */
2867 rsa = s->cert->pkeys[SSL_PKEY_RSA].privatekey;
3119 pk = s->cert->pkeys[SSL_PKEY_GOST12_512].privatekey;
3121 pk = s->cert->pkeys[SSL_PKEY_GOST12_256].privatekey;
3124 pk = s->cert->pkeys[SSL_PKEY_GOST01].privatekey;
3127 pk = s->cert->pkeys[SSL_PKEY_GOST01].privatekey;
3226 pk = s->cert->pkeys[SSL_PKEY_GOST12_512].privatekey != NULL ?
3227 s->cert->pkeys[SSL_PKEY_GOST12_512].privatekey :
3228 s->cert->pkeys[SSL_PKEY_GOST12_256].privatekey;
3597 CERT_PKEY *cpk = s->s3.tmp.cert;