Home
last modified time | relevance | path

Searched refs:cert_req_ca_list (Results 1 – 4 of 4) sorted by relevance

/mbedtls-latest/programs/ssl/
Dssl_server2.c656 int cert_req_ca_list; /* should we send the CA list? */ member
1743 opt.cert_req_ca_list = DFL_CERT_REQ_CA_LIST; in main()
2137 opt.cert_req_ca_list = atoi(q); in main()
2138 if (opt.cert_req_ca_list < 0 || opt.cert_req_ca_list > 3) { in main()
2141 if (opt.cert_req_ca_list > 1) { in main()
2142 opt.cert_req_dn_hint = opt.cert_req_ca_list; in main()
2143 opt.cert_req_ca_list = MBEDTLS_SSL_CERT_REQ_CA_LIST_ENABLED; in main()
2820 if (opt.cert_req_ca_list != DFL_CERT_REQ_CA_LIST) { in main()
2821 mbedtls_ssl_conf_cert_req_ca_list(&conf, opt.cert_req_ca_list); in main()
/mbedtls-latest/include/mbedtls/
Dssl.h1465 uint8_t MBEDTLS_PRIVATE(cert_req_ca_list); /*!< enable sending CA list in
4420 char cert_req_ca_list);
/mbedtls-latest/library/
Dssl_tls.c2930 char cert_req_ca_list) in mbedtls_ssl_conf_cert_req_ca_list() argument
2932 conf->cert_req_ca_list = cert_req_ca_list; in mbedtls_ssl_conf_cert_req_ca_list()
5920 conf->cert_req_ca_list = MBEDTLS_SSL_CERT_REQ_CA_LIST_ENABLED; in mbedtls_ssl_config_defaults()
Dssl_tls12_server.c2529 if (ssl->conf->cert_req_ca_list == MBEDTLS_SSL_CERT_REQ_CA_LIST_ENABLED) { in ssl_write_certificate_request()