Home
last modified time | relevance | path

Searched refs:auth (Results 1 – 25 of 29) sorted by relevance

12

/php-src/ext/standard/tests/network/
H A Dbug73594a.phpt20 $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 Ddns_get_record_error_conditions.phpt13 $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 Dbug73594.phpt20 $auth = array();
22 $res = dns_get_record('php.net', DNS_MX, $auth, $additional);
/php-src/ext/soap/tests/bugs/
H A Dbug50762.phpt8 private $auth;
10 $this->auth=true;
13 return 'header handler ' . ($this->auth ? 'called' : 'not called');
H A Dbug42692.phpt9 function checkAuth($peid,$auth) {
/php-src/ext/soap/
H A Dphp_http.c38 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()
809 smart_str auth = {0}; in make_http_soap_request() local
816 smart_str_0(&auth); in make_http_soap_request()
1169 if (auth && strstr(auth, "Digest") == auth && Z_TYPE_P(digest) != IS_ARRAY in make_http_soap_request()
1226 efree(auth); in make_http_soap_request()
[all …]
/php-src/sapi/cli/tests/
H A Dphp_cli_server_007.phpt10 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 Dphp_cli_server_021.phpt18 …", nonce="dcd98b7102dd2f0e8b11d0f600bfb0c093", uri="/dir/index.html", qop=auth, nc=00000001, cnonc…
37 …", nonce="dcd98b7102dd2f0e8b11d0f600bfb0c093", uri="/dir/index.html", qop=auth, nc=00000001, cnonc…
/php-src/ext/mysqli/tests/
H A Dmysqli_auth_pam.phpt2 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 Dgh11438.phpt14 die("skip SHA256 auth plugin not built-in to mysqlnd");
H A Dmysqli_pam_sha256.phpt12 die("skip SHA256 auth plugin not built-in to mysqlnd");
H A Dmysqli_pam_sha256_public_key_ini.phpt12 die("skip SHA256 auth plugin not built-in to mysqlnd");
H A Dmysqli_pam_sha256_public_key_option.phpt12 die("skip SHA256 auth plugin not built-in to mysqlnd");
H A Dmysqli_pam_sha256_public_key_option_invalid.phpt12 die("skip SHA256 auth plugin not built-in to mysqlnd");
/php-src/main/
H A Dphp_main.h53 PHPAPI int php_handle_auth_data(const char *auth);
H A Dmain.c2601 PHPAPI int php_handle_auth_data(const char *auth) in php_handle_auth_data() argument
2604 size_t auth_len = auth != NULL ? strlen(auth) : 0; in php_handle_auth_data()
2606 …if (auth && auth_len > 0 && zend_binary_strncasecmp(auth, auth_len, "Basic ", sizeof("Basic ")-1, … in php_handle_auth_data()
2610 user = php_base64_decode((const unsigned char*)auth + 6, auth_len - 6); in php_handle_auth_data()
2629 …if (ret == -1 && auth && auth_len > 0 && zend_binary_strncasecmp(auth, auth_len, "Digest ", sizeof… in php_handle_auth_data()
2630 SG(request_info).auth_digest = estrdup(auth + 7); in php_handle_auth_data()
/php-src/ext/sodium/tests/
H A Dcrypto_auth.phpt2 Check for libsodium auth
/php-src/.github/scripts/
H A Dsetup-slapd.sh76 olcAuthzRegexp: uid=usera,cn=digest-md5,cn=auth cn=usera,dc=my-domain,dc=com
/php-src/ext/phar/tests/
H A Dbug65028.phpt52 "modules/auth/misc/authLoginService.php",
53 "modules/auth/setup/config.xml",
/php-src/sapi/apache2handler/
H A Dsapi_apache2.c525 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-src/ext/ldap/tests/
H A DREADME.md117 uid=Manager,cn=digest-md5,cn=auth
/php-src/ext/pcre/tests/
H A Dpreg_match_error4.phpt771 "name": "tymon\\/jwt-auth",
898 "tymon\\/jwt-auth": "0.5.9",
/php-src/sapi/fpm/fpm/
H A Dfpm_main.c999 const char *auth; in init_request_info() local
1353 auth = FCGI_GETENV(request, "HTTP_AUTHORIZATION"); in init_request_info()
1354 php_handle_auth_data(auth); in init_request_info()
/php-src/ext/curl/tests/
H A Dcurl_setopt_ssl.phpt2 CURLOPT_SSL* basic client auth tests
/php-src/sapi/cgi/
H A Dcgi_main.c1187 const char *auth; local
1447 auth = CGI_GETENV("HTTP_AUTHORIZATION");
1448 php_handle_auth_data(auth);

Completed in 54 milliseconds

12