Lines Matching refs:auth

38 		smart_str auth = {0};  in proxy_authentication()  local
39 smart_str_append(&auth, Z_STR_P(login)); in proxy_authentication()
40 smart_str_appendc(&auth, ':'); in proxy_authentication()
44 smart_str_append(&auth, Z_STR_P(password)); in proxy_authentication()
46 smart_str_0(&auth); in proxy_authentication()
47 zend_string *buf = php_base64_encode((unsigned char*)ZSTR_VAL(auth.s), ZSTR_LEN(auth.s)); in proxy_authentication()
52 smart_str_free(&auth); in proxy_authentication()
64 smart_str auth = {0}; in basic_authentication() local
65 smart_str_append(&auth, Z_STR_P(login)); in basic_authentication()
66 smart_str_appendc(&auth, ':'); in basic_authentication()
70 smart_str_append(&auth, Z_STR_P(password)); in basic_authentication()
72 smart_str_0(&auth); in basic_authentication()
73 zend_string *buf = php_base64_encode((unsigned char*)ZSTR_VAL(auth.s), ZSTR_LEN(auth.s)); in basic_authentication()
78 smart_str_free(&auth); in basic_authentication()
815 smart_str auth = {0}; in make_http_soap_request() local
816 smart_str_append(&auth, Z_STR_P(login)); in make_http_soap_request()
817 smart_str_appendc(&auth, ':'); in make_http_soap_request()
820 smart_str_append(&auth, Z_STR_P(password)); in make_http_soap_request()
822 smart_str_0(&auth); in make_http_soap_request()
823 buf = php_base64_encode((unsigned char*)ZSTR_VAL(auth.s), ZSTR_LEN(auth.s)); in make_http_soap_request()
828 smart_str_free(&auth); in make_http_soap_request()
1174 char *auth = get_http_header_value(ZSTR_VAL(http_headers), "WWW-Authenticate: "); in make_http_soap_request() local
1175 if (auth && strstr(auth, "Digest") == auth && Z_TYPE_P(digest) != IS_ARRAY in make_http_soap_request()
1181 s = auth + sizeof("Digest")-1; in make_http_soap_request()
1232 efree(auth); in make_http_soap_request()
1239 if (auth) efree(auth); in make_http_soap_request()