Home | History | Annotate | Download | only in auth

Lines Matching defs: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
142 if (variant.equals("auth")) {
144 break; //that's our favourite, because auth-int is unsupported
145 } else if (variant.equals("auth-int")) {
212 * @throws org.apache.http.auth.InvalidCredentialsException if authentication credentials
329 // Unhandled qop auth-int
387 buffer.append(AUTH.PROXY_AUTH_RESP);
389 buffer.append(AUTH.WWW_AUTH_RESP);
437 qopOption = "auth-int";
439 qopOption = "auth";