/external/wpa_supplicant_8/src/crypto/ |
D | tls_wolfssl.c | 76 char *domain_match; member 337 os_free(conn->domain_match); in tls_connection_deinit() 384 const char *domain_match) in tls_connection_set_subject_match() argument 410 os_free(conn->domain_match); in tls_connection_set_subject_match() 411 conn->domain_match = NULL; in tls_connection_set_subject_match() 412 if (domain_match) { in tls_connection_set_subject_match() 413 conn->domain_match = os_strdup(domain_match); in tls_connection_set_subject_match() 414 if (!conn->domain_match) in tls_connection_set_subject_match() 952 char *match, *altmatch, *suffix_match, *domain_match; in tls_verify_cb() local 985 domain_match = conn->domain_match; in tls_verify_cb() [all …]
|
D | tls_gnutls.c | 63 char *domain_match; member 287 os_free(conn->domain_match); in tls_connection_deinit() 395 os_free(conn->domain_match); in tls_connection_set_params() 396 conn->domain_match = NULL; in tls_connection_set_params() 397 if (params->domain_match) { in tls_connection_set_params() 398 conn->domain_match = os_strdup(params->domain_match); in tls_connection_set_params() 399 if (conn->domain_match == NULL) in tls_connection_set_params() 403 if (params->domain_match) { in tls_connection_set_params() 1345 if (conn->domain_match && in tls_connection_verify_peer() 1346 !tls_match_suffix(cert, conn->domain_match, 1)) { in tls_connection_verify_peer() [all …]
|
D | tls_openssl.c | 249 char *subject_match, *altsubject_match, *suffix_match, *domain_match; member 1630 os_free(conn->domain_match); in tls_connection_deinit() 2280 char *match, *altmatch, *suffix_match, *domain_match; in tls_verify_cb() local 2309 domain_match = conn->domain_match; in tls_verify_cb() 2417 } else if (depth == 0 && domain_match && in tls_verify_cb() 2418 !tls_match_suffix(err_cert, domain_match, 1)) { in tls_verify_cb() 2420 domain_match); in tls_verify_cb() 2770 const char *domain_match, in tls_connection_set_subject_match() argument 2797 os_free(conn->domain_match); in tls_connection_set_subject_match() 2798 conn->domain_match = NULL; in tls_connection_set_subject_match() [all …]
|
D | tls.h | 185 const char *domain_match; member
|
D | tls_internal.c | 239 if (params->domain_match) { in tls_connection_set_params()
|
/external/python/cpython2/Lib/test/ |
D | test_cookielib.py | 705 from cookielib import domain_match, user_domain_match 706 self.assertTrue(domain_match("192.168.1.1", "192.168.1.1")) 707 self.assertFalse(domain_match("192.168.1.1", ".168.1.1")) 708 self.assertTrue(domain_match("x.y.com", "x.Y.com")) 709 self.assertTrue(domain_match("x.y.com", ".Y.com")) 710 self.assertFalse(domain_match("x.y.com", "Y.com")) 711 self.assertTrue(domain_match("a.b.c.com", ".c.com")) 712 self.assertFalse(domain_match(".c.com", "a.b.c.com")) 713 self.assertTrue(domain_match("example.local", ".local")) 714 self.assertFalse(domain_match("blah.blah", "")) [all …]
|
/external/python/cpython3/Lib/test/ |
D | test_http_cookiejar.py | 14 reach, is_HDN, domain_match, user_domain_match, request_path, 767 self.assertTrue(domain_match("192.168.1.1", "192.168.1.1")) 768 self.assertFalse(domain_match("192.168.1.1", ".168.1.1")) 769 self.assertTrue(domain_match("x.y.com", "x.Y.com")) 770 self.assertTrue(domain_match("x.y.com", ".Y.com")) 771 self.assertFalse(domain_match("x.y.com", "Y.com")) 772 self.assertTrue(domain_match("a.b.c.com", ".c.com")) 773 self.assertFalse(domain_match(".c.com", "a.b.c.com")) 774 self.assertTrue(domain_match("example.local", ".local")) 775 self.assertFalse(domain_match("blah.blah", "")) [all …]
|
/external/wpa_supplicant_8/src/eap_peer/ |
D | eap_config.h | 299 char *domain_match; member
|
D | eap_tls_common.c | 121 params->domain_match = config->domain_match; in eap_tls_params_from_conf1() 145 params->domain_match = config->domain_match2; in eap_tls_params_from_conf2()
|
/external/python/cpython2/Lib/ |
D | cookielib.py | 528 def domain_match(A, B): function 717 if not domain_match(req_host, reach(request.get_origin_req_host())): 1038 if not domain_match(erhn, domain): 1150 if cookie.version > 0 and not domain_match(erhn, domain):
|
/external/python/cpython3/Lib/http/ |
D | cookiejar.py | 536 def domain_match(A, B): function 723 if not domain_match(req_host, reach(request.origin_req_host)): 1044 if not domain_match(erhn, domain): 1161 if cookie.version > 0 and not domain_match(erhn, domain):
|
/external/wpa_supplicant_8/wpa_supplicant/ |
D | config_file.c | 788 STR(domain_match); in wpa_config_write_network()
|
D | config.c | 2263 { STRe(domain_match) }, 2533 os_free(eap->domain_match); in eap_peer_config_free()
|
D | ChangeLog | 337 * add domain_match network profile parameter (similar to
|