Home | History | Annotate | Download | only in auth

Lines Matching refs:AUTH

2  * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/auth/DigestScheme.java $
31 package org.apache.http.impl.auth;
40 import org.apache.http.auth.AuthenticationException;
41 import org.apache.http.auth.Credentials;
42 import org.apache.http.auth.AUTH;
43 import org.apache.http.auth.MalformedChallengeException;
44 import org.apache.http.auth.params.AuthParams;
55 * Currently only qop=auth or no qop is supported. qop=auth-int
56 * is unsupported. If auth and auth-int are provided, auth is
61 * {@link org.apache.http.auth.params.AuthPNames#CREDENTIAL_CHARSET
147 if (variant.equals("auth")) {
149 break; //that's our favourite, because auth-int is unsupported
150 } else if (variant.equals("auth-int")) {
217 * @throws org.apache.http.auth.InvalidCredentialsException if authentication credentials
334 // Unhandled qop auth-int
392 buffer.append(AUTH.PROXY_AUTH_RESP);
394 buffer.append(AUTH.WWW_AUTH_RESP);
442 qopOption = "auth-int";
444 qopOption = "auth";