Searched refs:authmode (Results 1 – 9 of 9) sorted by relevance
/mbedtls-latest/library/ |
D | ssl_tls13_generic.c | 641 const int authmode = ssl->handshake->sni_authmode != MBEDTLS_SSL_VERIFY_UNSET in ssl_tls13_validate_certificate() local 643 : ssl->conf->authmode; in ssl_tls13_validate_certificate() 645 const int authmode = ssl->conf->authmode; in ssl_tls13_validate_certificate() 665 if (authmode == MBEDTLS_SSL_VERIFY_OPTIONAL) { in ssl_tls13_validate_certificate() 690 return mbedtls_ssl_verify_certificate(ssl, authmode, in ssl_tls13_validate_certificate()
|
D | ssl_tls.c | 1642 void mbedtls_ssl_conf_authmode(mbedtls_ssl_config *conf, int authmode) in mbedtls_ssl_conf_authmode() argument 1644 conf->authmode = authmode; in mbedtls_ssl_conf_authmode() 1931 int authmode) in mbedtls_ssl_set_hs_authmode() argument 1933 ssl->handshake->sni_authmode = authmode; in mbedtls_ssl_set_hs_authmode() 5869 conf->authmode = MBEDTLS_SSL_VERIFY_REQUIRED; in mbedtls_ssl_config_defaults() 7867 int authmode) in ssl_parse_certificate_coordinate() argument 7882 if (authmode == MBEDTLS_SSL_VERIFY_NONE) { in ssl_parse_certificate_coordinate() 7889 ((void) authmode); in ssl_parse_certificate_coordinate() 7953 const int authmode = ssl->handshake->sni_authmode != MBEDTLS_SSL_VERIFY_UNSET in mbedtls_ssl_parse_certificate() local 7955 : ssl->conf->authmode; in mbedtls_ssl_parse_certificate() [all …]
|
D | ssl_tls13_server.c | 2664 int authmode; in ssl_tls13_certificate_request_coordinate() local 2668 authmode = ssl->handshake->sni_authmode; in ssl_tls13_certificate_request_coordinate() 2671 authmode = ssl->conf->authmode; in ssl_tls13_certificate_request_coordinate() 2673 if (authmode == MBEDTLS_SSL_VERIFY_NONE) { in ssl_tls13_certificate_request_coordinate()
|
D | ssl_tls12_server.c | 2426 int authmode; in ssl_write_certificate_request() local 2434 authmode = ssl->handshake->sni_authmode; in ssl_write_certificate_request() 2437 authmode = ssl->conf->authmode; in ssl_write_certificate_request() 2440 authmode == MBEDTLS_SSL_VERIFY_NONE) { in ssl_write_certificate_request()
|
D | ssl_misc.h | 1703 int authmode,
|
/mbedtls-latest/tests/ |
D | Descriptions.txt | 16 For each ciphersuite/version/side/authmode it performs a full handshake
|
/mbedtls-latest/include/mbedtls/ |
D | ssl.h | 1428 uint8_t MBEDTLS_PRIVATE(authmode); /*!< MBEDTLS_SSL_VERIFY_XXX */ 2083 void mbedtls_ssl_conf_authmode(mbedtls_ssl_config *conf, int authmode); 4086 int authmode);
|
/mbedtls-latest/programs/ssl/ |
D | ssl_server2.c | 755 int authmode; member 859 if ((new->authmode = get_auth_mode(auth_str)) < 0) { in sni_parse() 863 new->authmode = DFL_AUTH_MODE; in sni_parse() 928 if (cur->authmode != DFL_AUTH_MODE) { in cert_callback() 929 mbedtls_ssl_set_hs_authmode(ssl, cur->authmode); in cert_callback()
|
/mbedtls-latest/ |
D | ChangeLog | 179 use authmode none, and to carefully check the results when using optional 3994 * Fix authentication bypass in SSL/TLS: when authmode is set to optional, 3998 triggered remotely from either side. (With authmode set to 'required' 4022 * With authmode set to optional, the TLS handshake is now aborted if the 4698 * The default authmode for SSL/TLS clients is now REQUIRED. 4741 * With authmode set to SSL_VERIFY_OPTIONAL, verification of keyUsage and
|