Home
last modified time | relevance | path

Searched refs:san (Results 1 – 6 of 6) sorted by relevance

/PHP-8.3/ext/openssl/tests/
H A Dbug68265.phpt12 $san = 'DNS:debs.ak-online.be., DNS:debs.ak-online.net.';
44 $certificateGenerator->saveNewCertAsFileWithKey('test.com', $certFile, null, $san);
H A Dbug68879.phpt12 $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 Dsan_peer_matching.phpt12 $san = 'DNS:example.org, DNS:www.example.org, DNS:test.example.org';
47 $certificateGenerator->saveNewCertAsFileWithKey(null, $certFile, null, $san);
H A Dsan_ipv6_peer_matching.phpt17 $san = 'IP:2001:db8:85a3:8d3:1319:8a2e:370:7348';
52 $certificateGenerator->saveNewCertAsFileWithKey(null, $certFile, null, $san);
H A Dopenssl_x509_checkpurpose_basic.phpt14 $certificateGenerator->saveCaCert(__DIR__ . "/san-cert.pem");
18 $sert = "file://" . __DIR__ . "/san-cert.pem";
19 $cpca = __DIR__ . "/san-cert.pem";
94 @unlink(__DIR__ . "/san-cert.pem");
/PHP-8.3/ext/openssl/
H A Dxp_ssl.c476 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 18 milliseconds