Home
last modified time | relevance | path

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

/PHP-5.5/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-5.5/ext/soap/
H A Dphp_http.c43 smart_str auth = {0}; in proxy_authentication() local
51 smart_str_0(&auth); in proxy_authentication()
52 buf = php_base64_encode((unsigned char*)auth.c, auth.len, &len); in proxy_authentication()
73 smart_str auth = {0}; in basic_authentication() local
81 smart_str_0(&auth); in basic_authentication()
82 buf = php_base64_encode((unsigned char*)auth.c, auth.len, &len); in basic_authentication()
797 buf = php_base64_encode((unsigned char*)auth.c, auth.len, &len); in make_http_soap_request()
1142 if (auth && in make_http_soap_request()
1143 strstr(auth, "Digest") == auth && in make_http_soap_request()
1205 efree(auth); in make_http_soap_request()
[all …]
/PHP-5.5/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…
39 WWW-Authenticate: Digest realm="foo",qop="auth",nonce="XXXXX",opaque="acbd18db4cc2f85cedef654fccc4a…
/PHP-5.5/main/
H A Dphp_main.h48 PHPAPI int php_handle_auth_data(const char *auth TSRMLS_DC);
H A Dmain.c2598 PHPAPI int php_handle_auth_data(const char *auth TSRMLS_DC) in php_handle_auth_data()
2602 if (auth && auth[0] != '\0' && strncmp(auth, "Basic ", 6) == 0) { in php_handle_auth_data()
2606 user = php_base64_decode(auth + 6, strlen(auth) - 6, NULL); in php_handle_auth_data()
2626 if (ret == -1 && auth && auth[0] != '\0' && strncmp(auth, "Digest ", 7) == 0) { in php_handle_auth_data()
2627 SG(request_info).auth_digest = estrdup(auth + 7); in php_handle_auth_data()
/PHP-5.5/sapi/caudium/
H A DTODO5 - fix setting of auth info.
/PHP-5.5/ext/imap/tests/
H A DREADME28 auth default {
/PHP-5.5/ext/ldap/tests/
H A DREADME30 uid=Manager,cn=digest-md5,cn=auth
/PHP-5.5/ext/phar/tests/
H A Dbug65028.phpt52 "modules/auth/misc/authLoginService.php",
53 "modules/auth/setup/config.xml",
/PHP-5.5/sapi/apache2handler/
H A Dsapi_apache2.c474 const char *auth; in php_apache_request_ctor() local
493 auth = apr_table_get(r->headers_in, "Authorization"); in php_apache_request_ctor()
494 php_handle_auth_data(auth TSRMLS_CC); in php_apache_request_ctor()
/PHP-5.5/ext/pdo/
H A DTODO62 mysqli_change_user(); alters auth credentials on a live connection
/PHP-5.5/sapi/apache2filter/
H A Dsapi_apache2.c401 const char *auth; in php_apache_request_ctor() local
429 auth = apr_table_get(f->r->headers_in, "Authorization"); in php_apache_request_ctor()
430 php_handle_auth_data(auth TSRMLS_CC); in php_apache_request_ctor()
/PHP-5.5/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-5.5/sapi/fpm/fpm/
H A Dfpm_main.c1081 const char *auth; local
1398 auth = sapi_cgibin_getenv("HTTP_AUTHORIZATION", sizeof("HTTP_AUTHORIZATION") - 1 TSRMLS_CC);
1399 php_handle_auth_data(auth TSRMLS_CC);
/PHP-5.5/sapi/cgi/
H A Dcgi_main.c1166 const char *auth; local
1427 auth = CGI_GETENV("HTTP_AUTHORIZATION");
1428 php_handle_auth_data(auth TSRMLS_CC);
/PHP-5.5/ext/ftp/tests/
H A Dserver.inc113 fputs($s, "234 auth type accepted\r\n");
/PHP-5.5/sapi/cli/
H A Dphp_cli_server.c2095 char **auth; in php_cli_server_request_startup() local
2097 …end_hash_find(&client->request.headers, "authorization", sizeof("authorization"), (void**)&auth)) { in php_cli_server_request_startup()
2098 php_handle_auth_data(*auth TSRMLS_CC); in php_cli_server_request_startup()
/PHP-5.5/
H A DUPGRADING477 ext/mysqli to be used with the new auth protocol, although at
/PHP-5.5/ext/sqlite3/libsqlite/
H A Dsqlite3.c11128 sqlite3_userauth auth; /* User authentication information */ member
82027 if( auth!=SQLITE_OK ){
82028 if( auth==SQLITE_DENY ){
90171 if( newAuth<db->auth.authLevel ){
90657 ,db->auth.zAuthUser
90761 ,db->auth.zAuthUser
90967 if( db->auth.authLevel<UAUTH_User ){
91170 else if( pParse->db->auth.authLevel<UAUTH_User ){
104561 if( db->auth.authLevel==UAUTH_User ){
129121 sqlite3_free(db->auth.zAuthUser);
[all …]

Completed in 383 milliseconds