Home
last modified time | relevance | path

Searched refs:suffix_match (Results 1 – 7 of 7) sorted by relevance

/hostap-latest/src/crypto/
Dtls_wolfssl.c81 char *suffix_match; member
378 os_free(conn->suffix_match); in tls_connection_deinit()
429 const char *suffix_match, in tls_connection_set_subject_match() argument
448 os_free(conn->suffix_match); in tls_connection_set_subject_match()
449 conn->suffix_match = NULL; in tls_connection_set_subject_match()
450 if (suffix_match) { in tls_connection_set_subject_match()
451 conn->suffix_match = os_strdup(suffix_match); in tls_connection_set_subject_match()
452 if (!conn->suffix_match) in tls_connection_set_subject_match()
983 char *match, *altmatch, *suffix_match, *domain_match; in tls_verify_cb() local
1015 suffix_match = conn->suffix_match; in tls_verify_cb()
[all …]
Dtls_gnutls.c62 char *suffix_match; member
286 os_free(conn->suffix_match); in tls_connection_deinit()
386 os_free(conn->suffix_match); in tls_connection_set_params()
387 conn->suffix_match = NULL; in tls_connection_set_params()
388 if (params->suffix_match) { in tls_connection_set_params()
389 conn->suffix_match = os_strdup(params->suffix_match); in tls_connection_set_params()
390 if (conn->suffix_match == NULL) in tls_connection_set_params()
1329 if (conn->suffix_match && in tls_connection_verify_peer()
1330 !tls_match_suffix(cert, conn->suffix_match, 0)) { in tls_connection_verify_peer()
1333 conn->suffix_match); in tls_connection_verify_peer()
Dtls_openssl.c249 char *subject_match, *altsubject_match, *suffix_match, *domain_match; member
1789 os_free(conn->suffix_match); in tls_connection_deinit()
2502 char *match, *altmatch, *suffix_match, *domain_match; in tls_verify_cb() local
2532 suffix_match = conn->suffix_match; in tls_verify_cb()
2656 } else if (depth == 0 && suffix_match && in tls_verify_cb()
2657 !tls_match_suffix(err_cert, suffix_match, 0)) { in tls_verify_cb()
2659 suffix_match); in tls_verify_cb()
3029 const char *suffix_match, in tls_connection_set_subject_match() argument
3049 os_free(conn->suffix_match); in tls_connection_set_subject_match()
3050 conn->suffix_match = NULL; in tls_connection_set_subject_match()
[all …]
Dtls_mbedtls_alt.c165 char *suffix_match; member
381 os_free(tls_conf->suffix_match); in tls_conf_deinit()
1323 rc &= tls_mbedtls_set_item(&tls_conf->suffix_match, params->suffix_match); in tls_connection_set_subject_match()
3163 if (tls_conf->suffix_match && !tls_mbedtls_match_suffixes(crt, tls_conf->suffix_match, 0)) in tls_mbedtls_verify_cb()
3165 … wpa_printf(MSG_WARNING, "MTLS: Domain suffix match '%s' not found", tls_conf->suffix_match); in tls_mbedtls_verify_cb()
Dtls.h194 const char *suffix_match; member
Dtls_internal.c233 if (params->suffix_match) { in tls_connection_set_params()
/hostap-latest/src/eap_peer/
Deap_tls_common.c123 params->suffix_match = config->domain_suffix_match; in eap_tls_cert_params_from_conf()