Home
last modified time | relevance | path

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

/PHP-8.0/ext/openssl/tests/
H A Dbug68879.phpt11 $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.…
43 $certificateGenerator->saveNewCertAsFileWithKey('test.com', $certFile, null, $san);
H A Dbug68265.phpt11 $san = 'DNS:debs.ak-online.be., DNS:debs.ak-online.net.';
43 $certificateGenerator->saveNewCertAsFileWithKey('test.com', $certFile, null, $san);
H A Dsan_peer_matching.phpt11 $san = 'DNS:example.org, DNS:www.example.org, DNS:test.example.org';
46 $certificateGenerator->saveNewCertAsFileWithKey(null, $certFile, null, $san);
H A Dopenssl_x509_checkpurpose_basic.phpt13 $certificateGenerator->saveCaCert(__DIR__ . "/san-cert.pem");
17 $sert = "file://" . __DIR__ . "/san-cert.pem";
18 $cpca = __DIR__ . "/san-cert.pem";
93 @unlink(__DIR__ . "/san-cert.pem");
/PHP-8.0/ext/openssl/
H A Dxp_ssl.c431 GENERAL_NAME *san = sk_GENERAL_NAME_value(alt_names, i); in php_openssl_matches_san_list() local
433 if (san->type == GEN_DNS) { in php_openssl_matches_san_list()
434 ASN1_STRING_to_UTF8(&cert_name, san->d.dNSName); in php_openssl_matches_san_list()
435 if ((size_t)ASN1_STRING_length(san->d.dNSName) != strlen((const char*)cert_name)) { in php_openssl_matches_san_list()
454 } else if (san->type == GEN_IPADD) { in php_openssl_matches_san_list()
455 if (san->d.iPAddress->length == 4) { in php_openssl_matches_san_list()
457 san->d.iPAddress->data[0], in php_openssl_matches_san_list()
458 san->d.iPAddress->data[1], in php_openssl_matches_san_list()
459 san->d.iPAddress->data[2], in php_openssl_matches_san_list()
460 san->d.iPAddress->data[3] in php_openssl_matches_san_list()

Completed in 27 milliseconds