Home
last modified time | relevance | path

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

/openthread-latest/third_party/mbedtls/repo/programs/ssl/
Dssl_server2.c656 int cert_req_ca_list; /* should we send the CA list? */ member
1734 opt.cert_req_ca_list = DFL_CERT_REQ_CA_LIST; in main()
2128 opt.cert_req_ca_list = atoi(q); in main()
2129 if (opt.cert_req_ca_list < 0 || opt.cert_req_ca_list > 3) { in main()
2132 if (opt.cert_req_ca_list > 1) { in main()
2133 opt.cert_req_dn_hint = opt.cert_req_ca_list; in main()
2134 opt.cert_req_ca_list = MBEDTLS_SSL_CERT_REQ_CA_LIST_ENABLED; in main()
2811 if (opt.cert_req_ca_list != DFL_CERT_REQ_CA_LIST) { in main()
2812 mbedtls_ssl_conf_cert_req_ca_list(&conf, opt.cert_req_ca_list); in main()
/openthread-latest/third_party/mbedtls/repo/include/mbedtls/
Dssl.h1459 uint8_t MBEDTLS_PRIVATE(cert_req_ca_list); /*!< enable sending CA list in
4405 char cert_req_ca_list);
/openthread-latest/third_party/mbedtls/repo/library/
Dssl_tls.c2943 char cert_req_ca_list) in mbedtls_ssl_conf_cert_req_ca_list() argument
2945 conf->cert_req_ca_list = cert_req_ca_list; in mbedtls_ssl_conf_cert_req_ca_list()
5894 conf->cert_req_ca_list = MBEDTLS_SSL_CERT_REQ_CA_LIST_ENABLED; in mbedtls_ssl_config_defaults()
Dssl_tls12_server.c2527 if (ssl->conf->cert_req_ca_list == MBEDTLS_SSL_CERT_REQ_CA_LIST_ENABLED) { in ssl_write_certificate_request()