Home
last modified time | relevance | path

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

12

/PHP-7.1/sapi/phpdbg/
H A Dphpdbg_rinit_hook.c26 …STD_PHP_INI_ENTRY("phpdbg.auth", "", PHP_INI_SYSTEM | PHP_INI_PERDIR, OnUpdateString, auth, zend_p…
49 zval *auth; in PHP_RINIT_FUNCTION() local
51auth = zend_hash_str_find(Z_ARRVAL(cookies), PHPDBG_NAME "_AUTH_COOKIE", sizeof(PHPDBG_NAME "_AUTH… in PHP_RINIT_FUNCTION()
H A Dphpdbg_rinit_hook.h37 char *auth;
/PHP-7.1/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 Dbug73594.phpt20 $auth = array();
22 $res = dns_get_record('php.net', DNS_MX, $auth, $additional);
/PHP-7.1/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-7.1/ext/soap/
H A Dphp_http.c42 smart_str auth = {0}; in proxy_authentication() local
50 smart_str_0(&auth); in proxy_authentication()
51 buf = php_base64_encode((unsigned char*)ZSTR_VAL(auth.s), ZSTR_LEN(auth.s)); in proxy_authentication()
56 smart_str_free(&auth); in proxy_authentication()
71 smart_str auth = {0}; in basic_authentication() local
79 smart_str_0(&auth); in basic_authentication()
80 buf = php_base64_encode((unsigned char*)ZSTR_VAL(auth.s), ZSTR_LEN(auth.s)); in basic_authentication()
1151 if (auth && in make_http_soap_request()
1152 strstr(auth, "Digest") == auth && in make_http_soap_request()
1214 efree(auth); in make_http_soap_request()
[all …]
/PHP-7.1/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…
40 WWW-Authenticate: Digest realm="foo",qop="auth",nonce="XXXXX",opaque="acbd18db4cc2f85cedef654fccc4a…
/PHP-7.1/main/
H A Dphp_main.h48 PHPAPI int php_handle_auth_data(const char *auth);
H A Dmain.c2655 PHPAPI int php_handle_auth_data(const char *auth) in php_handle_auth_data() argument
2659 if (auth && auth[0] != '\0' && strncmp(auth, "Basic ", 6) == 0) { in php_handle_auth_data()
2663 user = php_base64_decode((const unsigned char*)auth + 6, strlen(auth) - 6); in php_handle_auth_data()
2682 if (ret == -1 && auth && auth[0] != '\0' && strncmp(auth, "Digest ", 7) == 0) { in php_handle_auth_data()
2683 SG(request_info).auth_digest = estrdup(auth + 7); in php_handle_auth_data()
/PHP-7.1/ext/imap/tests/
H A DREADME27 auth default {
/PHP-7.1/ext/phar/tests/
H A Dbug65028.phpt52 "modules/auth/misc/authLoginService.php",
53 "modules/auth/setup/config.xml",
/PHP-7.1/sapi/apache2handler/
H A Dsapi_apache2.c515 const char *auth; in php_apache_request_ctor() local
538 auth = apr_table_get(r->headers_in, "Authorization"); in php_apache_request_ctor()
539 php_handle_auth_data(auth); in php_apache_request_ctor()
/PHP-7.1/ext/pdo/
H A DTODO62 mysqli_change_user(); alters auth credentials on a live connection
/PHP-7.1/ext/mysqli/tests/
H A Dmysqli_auth_pam.phpt2 PAM auth plugin
H A Dmysqli_pam_sha256.phpt14 die("skip SHA256 auth plugin not built-in to mysqlnd");
H A Dmysqli_pam_sha256_public_key_ini.phpt14 die("skip SHA256 auth plugin not built-in to mysqlnd");
H A Dmysqli_pam_sha256_public_key_option.phpt14 die("skip SHA256 auth plugin not built-in to mysqlnd");
H A Dmysqli_pam_sha256_public_key_option_invalid.phpt14 die("skip SHA256 auth plugin not built-in to mysqlnd");
/PHP-7.1/ext/ldap/tests/
H A DREADME104 uid=Manager,cn=digest-md5,cn=auth
/PHP-7.1/ext/pcre/tests/
H A Dpreg_match_error4.phpt771 "name": "tymon\\/jwt-auth",
898 "tymon\\/jwt-auth": "0.5.9",
/PHP-7.1/sapi/fpm/fpm/
H A Dfpm_main.c1052 const char *auth; local
1393 auth = FCGI_GETENV(request, "HTTP_AUTHORIZATION");
1394 php_handle_auth_data(auth);
/PHP-7.1/sapi/cgi/
H A Dcgi_main.c1203 const char *auth; local
1464 auth = CGI_GETENV("HTTP_AUTHORIZATION");
1465 php_handle_auth_data(auth);
/PHP-7.1/sapi/cli/
H A Dphp_cli_server.c2100 char *auth; in php_cli_server_request_startup() local
2102 …if (NULL != (auth = zend_hash_str_find_ptr(&client->request.headers, "authorization", sizeof("auth… in php_cli_server_request_startup()
2103 php_handle_auth_data(auth); in php_cli_server_request_startup()
/PHP-7.1/ext/ftp/tests/
H A Dserver.inc114 fputs($s, "234 auth type accepted\r\n");

Completed in 76 milliseconds

12