Lines Matching refs:auth_method
260 std::string& auth_method) { in HttpAuthenticate() argument
263 HttpHasNthAttribute(args, 0, &auth_method, nullptr); in HttpAuthenticate()
265 if (context && (context->auth_method != auth_method)) in HttpAuthenticate()
269 if (absl::EqualsIgnoreCase(auth_method, "basic")) { in HttpAuthenticate()
275 context = new HttpAuthContext(auth_method); in HttpAuthenticate()
287 response = auth_method; in HttpAuthenticate()
297 if (absl::EqualsIgnoreCase(auth_method, "digest")) { in HttpAuthenticate()
303 context = new HttpAuthContext(auth_method); in HttpAuthenticate()
344 ss << auth_method; in HttpAuthenticate()
364 bool want_negotiate = absl::EqualsIgnoreCase(auth_method, "negotiate"); in HttpAuthenticate()
365 bool want_ntlm = absl::EqualsIgnoreCase(auth_method, "ntlm"); in HttpAuthenticate()
525 context = neg = new NegotiateAuthContext(auth_method, cred, ctx); in HttpAuthenticate()
541 response = auth_method; in HttpAuthenticate()