Searched refs:Curl_cert_hostcheck (Results 1 – 7 of 7) sorted by relevance
/external/curl/tests/unit/ |
D | unit1397.c | 22 fail_unless( Curl_cert_hostcheck("www.example.com", "www.example.com"), "good 1" ); 23 fail_unless( Curl_cert_hostcheck("*.example.com", "www.example.com"), "good 2" ); 24 fail_unless( Curl_cert_hostcheck("xxx*.example.com", "xxxwww.example.com"), "good 3" ); 25 fail_unless( Curl_cert_hostcheck("f*.example.com", "foo.example.com"), "good 4" ); 26 fail_unless( Curl_cert_hostcheck("192.168.0.0", "192.168.0.0"), "good 5" ); 28 fail_if( Curl_cert_hostcheck("xxx.example.com", "www.example.com"), "bad 1" ); 29 fail_if( Curl_cert_hostcheck("*", "www.example.com"), "bad 2" ); 30 fail_if( Curl_cert_hostcheck("*.*.com", "www.example.com"), "bad 3" ); 31 fail_if( Curl_cert_hostcheck("*.example.com", "baa.foo.example.com"), "bad 4" ); 32 fail_if( Curl_cert_hostcheck("f*.example.com", "baa.example.com"), "bad 5" ); [all …]
|
/external/curl/lib/ |
D | hostcheck.h | 29 int Curl_cert_hostcheck(const char *match_pattern, const char *hostname);
|
D | hostcheck.c | 123 int Curl_cert_hostcheck(const char *match_pattern, const char *hostname) in Curl_cert_hostcheck() function
|
D | x509asn1.c | 1118 i = Curl_cert_hostcheck((const char *) dnsname, conn->host.name); in Curl_verifyhost() 1174 else if(Curl_cert_hostcheck((const char *) dnsname, conn->host.name)) { in Curl_verifyhost()
|
/external/curl/tests/data/ |
D | test1397 | 20 Check wildcard certificate matching function Curl_cert_hostcheck
|
/external/curl/lib/vtls/ |
D | axtls.c | 328 if(Curl_cert_hostcheck(dns_altname, conn->host.name)) { in connect_finish() 361 if(!Curl_cert_hostcheck((const char *)peer_CN, conn->host.name)) { in connect_finish()
|
D | openssl.c | 1150 Curl_cert_hostcheck(altptr, conn->host.name)) in verifyhost() 1252 else if(!Curl_cert_hostcheck((const char *)peer_CN, conn->host.name)) { in verifyhost()
|