/PHP-8.3/ext/standard/tests/network/ |
H A D | bug73594a.phpt | 20 $auth = array(); 21 $res = dns_get_record('php.net', DNS_MX, $auth); 22 // only check $auth if dns_get_record is successful 23 var_dump(!empty($res) && empty($auth));
|
H A D | dns_get_record_error_conditions.phpt | 13 $auth = []; 15 dns_get_record('php.net', 0, $auth, $additional, true); 21 $auth = []; 23 dns_get_record('php.net', 15263480, $auth, $additional, true);
|
H A D | bug73594.phpt | 20 $auth = array(); 22 $res = dns_get_record('php.net', DNS_MX, $auth, $additional);
|
/PHP-8.3/ext/soap/tests/bugs/ |
H A D | bug50762.phpt | 8 private $auth; 10 $this->auth=true; 13 return 'header handler ' . ($this->auth ? 'called' : 'not called');
|
H A D | bug55639.phpt | 28 header('WWW-Authenticate: Digest realm="realm", qop="auth,auth-int", nonce="aaaaaaaaaaaaaaaaaaaaaaa… 63 …, realm="realm", nonce="aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa", uri="/", qop=auth, nc=00000001, cnonc…
|
H A D | bug42692.phpt | 9 function checkAuth($peid,$auth) {
|
/PHP-8.3/ext/soap/ |
H A D | php_http.c | 38 smart_str auth = {0}; in proxy_authentication() local 46 smart_str_0(&auth); in proxy_authentication() 52 smart_str_free(&auth); in proxy_authentication() 64 smart_str auth = {0}; in basic_authentication() local 72 smart_str_0(&auth); in basic_authentication() 78 smart_str_free(&auth); in basic_authentication() 826 smart_str auth = {0}; in make_http_soap_request() local 833 smart_str_0(&auth); in make_http_soap_request() 1182 if (auth && strstr(auth, "Digest") == auth && Z_TYPE_P(digest) != IS_ARRAY in make_http_soap_request() 1239 efree(auth); in make_http_soap_request() [all …]
|
/PHP-8.3/sapi/cli/tests/ |
H A D | php_cli_server_007.phpt | 10 php_cli_server_start('header(\'WWW-Authenticate: Digest realm="foo",qop="auth",nonce="XXXXX",opaque… 35 WWW-Authenticate: Digest realm="foo",qop="auth",nonce="XXXXX",opaque="acbd18db4cc2f85cedef654fccc4a…
|
H A D | php_cli_server_021.phpt | 18 …", nonce="dcd98b7102dd2f0e8b11d0f600bfb0c093", uri="/dir/index.html", qop=auth, nc=00000001, cnonc… 37 …", nonce="dcd98b7102dd2f0e8b11d0f600bfb0c093", uri="/dir/index.html", qop=auth, nc=00000001, cnonc…
|
/PHP-8.3/ext/mysqli/tests/ |
H A D | mysqli_auth_pam.phpt | 2 PAM auth plugin 53 $auth = 0; 57 if (preg_match('/^auth/', $line)) { 58 $auth = 1; 63 if (!$auth) { 64 die("SKIP pam service file missing 'auth' directive");
|
H A D | gh11438.phpt | 14 die("skip SHA256 auth plugin not built-in to mysqlnd");
|
H A D | mysqli_pam_sha256.phpt | 12 die("skip SHA256 auth plugin not built-in to mysqlnd");
|
H A D | mysqli_pam_sha256_public_key_ini.phpt | 12 die("skip SHA256 auth plugin not built-in to mysqlnd");
|
H A D | mysqli_pam_sha256_public_key_option.phpt | 12 die("skip SHA256 auth plugin not built-in to mysqlnd");
|
H A D | mysqli_pam_sha256_public_key_option_invalid.phpt | 12 die("skip SHA256 auth plugin not built-in to mysqlnd");
|
/PHP-8.3/ext/imap/tests/setup/ |
H A D | dovecot.conf | 40 service auth {
|
/PHP-8.3/main/ |
H A D | php_main.h | 52 PHPAPI int php_handle_auth_data(const char *auth);
|
H A D | main.c | 2610 PHPAPI int php_handle_auth_data(const char *auth) in php_handle_auth_data() argument 2613 size_t auth_len = auth != NULL ? strlen(auth) : 0; in php_handle_auth_data() 2615 …if (auth && auth_len > 0 && zend_binary_strncasecmp(auth, auth_len, "Basic ", sizeof("Basic ")-1, … in php_handle_auth_data() 2619 user = php_base64_decode((const unsigned char*)auth + 6, auth_len - 6); in php_handle_auth_data() 2640 …if (ret == -1 && auth && auth_len > 0 && zend_binary_strncasecmp(auth, auth_len, "Digest ", sizeof… in php_handle_auth_data() 2641 SG(request_info).auth_digest = estrdup(auth + 7); in php_handle_auth_data()
|
/PHP-8.3/ext/sodium/tests/ |
H A D | crypto_auth.phpt | 2 Check for libsodium auth
|
/PHP-8.3/.github/scripts/ |
H A D | setup-slapd.sh | 76 olcAuthzRegexp: uid=usera,cn=digest-md5,cn=auth cn=usera,dc=my-domain,dc=com
|
/PHP-8.3/ext/phar/tests/ |
H A D | bug65028.phpt | 52 "modules/auth/misc/authLoginService.php", 53 "modules/auth/setup/config.xml",
|
/PHP-8.3/sapi/apache2handler/ |
H A D | sapi_apache2.c | 525 const char *auth; in php_apache_request_ctor() local 548 auth = apr_table_get(r->headers_in, "Authorization"); in php_apache_request_ctor() 549 php_handle_auth_data(auth); in php_apache_request_ctor()
|
/PHP-8.3/ext/ldap/tests/ |
H A D | README.md | 117 uid=Manager,cn=digest-md5,cn=auth
|
/PHP-8.3/ext/pcre/tests/ |
H A D | preg_match_error4.phpt | 771 "name": "tymon\\/jwt-auth", 898 "tymon\\/jwt-auth": "0.5.9",
|
/PHP-8.3/sapi/fpm/fpm/ |
H A D | fpm_main.c | 996 const char *auth; in init_request_info() local 1350 auth = FCGI_GETENV(request, "HTTP_AUTHORIZATION"); in init_request_info() 1351 php_handle_auth_data(auth); in init_request_info()
|