Searched refs:auth (Results 1 - 9 of 9) sorted by relevance
| /PHP_5_4/main/ |
| H A D | php_main.h | 48 PHPAPI int php_handle_auth_data(const char *auth TSRMLS_DC);
|
| H A D | main.c | 2567 PHPAPI int php_handle_auth_data(const char *auth TSRMLS_DC) 2571 if (auth && auth[0] != '\0' && strncmp(auth, "Basic ", 6) == 0) { 2575 user = php_base64_decode(auth + 6, strlen(auth) - 6, NULL); 2595 if (ret == -1 && auth && auth[0] != '\0' && strncmp(auth, "Digest ", 7) == 0) { 2596 SG(request_info).auth_digest = estrdup(auth [all...] |
| /PHP_5_4/sapi/apache2filter/ |
| H A D | sapi_apache2.c | 401 const char *auth; local 429 auth = apr_table_get(f->r->headers_in, "Authorization"); 430 php_handle_auth_data(auth TSRMLS_CC);
|
| /PHP_5_4/sapi/cgi/ |
| H A D | cgi_main.c | 1164 const char *auth; local 1425 auth = CGI_GETENV("HTTP_AUTHORIZATION"); 1426 php_handle_auth_data(auth TSRMLS_CC);
|
| /PHP_5_4/sapi/cli/ |
| H A D | php_cli_server.c | 1942 char **auth; local 1944 if (SUCCESS == zend_hash_find(&client->request.headers, "Authorization", sizeof("Authorization"), (void**)&auth)) { 1945 php_handle_auth_data(*auth TSRMLS_CC);
|
| /PHP_5_4/sapi/fpm/fpm/ |
| H A D | fpm_main.c | 1077 const char *auth; local 1378 auth = sapi_cgibin_getenv("HTTP_AUTHORIZATION", sizeof("HTTP_AUTHORIZATION") - 1 TSRMLS_CC); 1379 php_handle_auth_data(auth TSRMLS_CC);
|
| /PHP_5_4/ext/soap/ |
| H A D | php_http.c | 42 smart_str auth = {0}; local 44 smart_str_appendl(&auth, Z_STRVAL_PP(login), Z_STRLEN_PP(login)); 45 smart_str_appendc(&auth, ':'); 47 smart_str_appendl(&auth, Z_STRVAL_PP(password), Z_STRLEN_PP(password)); 49 smart_str_0(&auth); 50 buf = php_base64_encode((unsigned char*)auth.c, auth.len, &len); 55 smart_str_free(&auth); 70 smart_str auth = {0}; local 72 smart_str_appendl(&auth, Z_STRVAL_P 722 smart_str auth = {0}; local 1068 char *auth = get_http_header_value(http_headers, "WWW-Authenticate: "); local [all...] |
| /PHP_5_4/ext/sqlite3/libsqlite/ |
| H A D | sqlite3.c | 9473 void *pAuthArg; /* 1st argument to the access auth function */ 70535 int auth; /* Authorization to use the function */ local [all...] |
| /PHP_5_4/sapi/apache2handler/ |
| H A D | sapi_apache2.c | 474 const char *auth; local 493 auth = apr_table_get(r->headers_in, "Authorization"); 494 php_handle_auth_data(auth TSRMLS_CC);
|
Completed in 173 milliseconds