Searched refs:san (Results 1 – 6 of 6) sorted by relevance
/php-src/ext/openssl/tests/ |
H A D | bug68265.phpt | 12 $san = 'DNS:debs.ak-online.be., DNS:debs.ak-online.net.'; 44 $certificateGenerator->saveNewCertAsFileWithKey('test.com', $certFile, null, $san);
|
H A D | bug68879.phpt | 12 $san = 'DNS:test.com, DNS:www.test.com, DNS:subdomain.test.com, IP:0:0:0:0:0:FFFF:A02:1, IP:10.2.0.… 44 $certificateGenerator->saveNewCertAsFileWithKey('test.com', $certFile, null, $san);
|
H A D | san_peer_matching.phpt | 12 $san = 'DNS:example.org, DNS:www.example.org, DNS:test.example.org'; 47 $certificateGenerator->saveNewCertAsFileWithKey(null, $certFile, null, $san);
|
H A D | san_ipv6_peer_matching.phpt | 17 $san = 'IP:2001:db8:85a3:8d3:1319:8a2e:370:7348'; 52 $certificateGenerator->saveNewCertAsFileWithKey(null, $certFile, null, $san);
|
H A D | openssl_x509_checkpurpose_basic.phpt | 11 $certificateGenerator->saveCaCert(__DIR__ . "/san-cert.pem"); 15 $sert = "file://" . __DIR__ . "/san-cert.pem"; 16 $cpca = __DIR__ . "/san-cert.pem"; 97 @unlink(__DIR__ . "/san-cert.pem");
|
/php-src/ext/openssl/ |
H A D | xp_ssl.c | 476 GENERAL_NAME *san = sk_GENERAL_NAME_value(alt_names, i); in php_openssl_matches_san_list() local 478 if (san->type == GEN_DNS) { in php_openssl_matches_san_list() 479 ASN1_STRING_to_UTF8(&cert_name, san->d.dNSName); in php_openssl_matches_san_list() 499 } else if (san->type == GEN_IPADD) { in php_openssl_matches_san_list() 500 if (san->d.iPAddress->length == 4) { in php_openssl_matches_san_list() 502 san->d.iPAddress->data[0], in php_openssl_matches_san_list() 503 san->d.iPAddress->data[1], in php_openssl_matches_san_list() 504 san->d.iPAddress->data[2], in php_openssl_matches_san_list() 505 san->d.iPAddress->data[3] in php_openssl_matches_san_list() 514 else if (san->d.ip->length == 16 && subject_name_is_ipv6) { in php_openssl_matches_san_list() [all …]
|
Completed in 36 milliseconds