HomeSort by relevance Sort by last modified time
    Searched refs:Authentication (Results 1 - 25 of 43) sorted by null

1 2

  /external/jetty/src/java/org/eclipse/jetty/server/
Authentication.java 28 /** The Authentication state of a request.
30 * The Authentication state can be one of several sub-types that
31 * reflects where the request is in the many different authentication
32 * cycles. Authentication might not yet be checked or it might be checked
36 public interface Authentication
39 /** A successful Authentication with User information.
41 public interface User extends Authentication
50 /** A wrapped authentication with methods provide the
53 public interface Wrapped extends Authentication
60 /** A deferred authentication with methods to progress
    [all...]
Request.java 186 private Authentication _authentication;
470 * Get the authentication.
472 * @return the authentication
474 public Authentication getAuthentication()
485 if (_authentication instanceof Authentication.Deferred)
486 setAuthentication(((Authentication.Deferred)_authentication).authenticate(this));
488 if (_authentication instanceof Authentication.User)
489 return ((Authentication.User)_authentication).getAuthMethod();
    [all...]
NCSARequestLog.java 492 Authentication authentication=request.getAuthentication(); local
493 if (authentication instanceof Authentication.User)
494 buf.append(((Authentication.User)authentication).getUserIdentity().getUserPrincipal().getName());
  /external/jetty/src/java/org/eclipse/jetty/client/security/
Authentication.java 28 * Simple authentication interface that sets required fields on the exchange.
30 public interface Authentication
BasicAuthentication.java 32 * Sets authentication headers for BASIC authentication challenges
36 public class BasicAuthentication implements Authentication
47 * BASIC authentication is of the form
ProxyAuthorization.java 32 * Sets proxy authentication headers for BASIC authentication challenges
36 public class ProxyAuthorization implements Authentication
47 * BASIC proxy authentication is of the form
DigestAuthentication.java 31 public class DigestAuthentication implements Authentication
  /external/wpa_supplicant_8/hs20/server/www/
spp.php 38 error_log("spp.php - Authentication failed - missing: " . print_r($needed));
39 die('Authentication failed');
43 error_log("spp.php - Authentication failed - empty username");
44 die('Authentication failed');
62 error_log("spp.php - Authentication failed - user '$user' not found");
63 die('Authentication failed');
66 error_log("spp.php - Authentication failed - empty password");
67 die('Authentication failed');
75 error_log("Authentication failure - response mismatch");
76 die('Authentication failed')
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/security/authentication/
SpnegoAuthenticator.java 19 package org.eclipse.jetty.security.authentication;
31 import org.eclipse.jetty.server.Authentication;
32 import org.eclipse.jetty.server.Authentication.User;
65 public Authentication validateRequest(ServletRequest request, ServletResponse response, boolean mandatory) throws ServerAuthException
84 return Authentication.UNAUTHENTICATED;
90 return Authentication.SEND_CONTINUE;
109 return Authentication.UNAUTHENTICATED;
DeferredAuthentication.java 20 package org.eclipse.jetty.security.authentication;
40 import org.eclipse.jetty.server.Authentication;
46 public class DeferredAuthentication implements Authentication.Deferred
62 * @see org.eclipse.jetty.server.Authentication.Deferred#authenticate(ServletRequest)
64 public Authentication authenticate(ServletRequest request)
68 Authentication authentication = _authenticator.validateRequest(request,__deferredResponse,true); local
70 if (authentication!=null && (authentication instanceof Authentication.User) && !(authentication instanceof Authentication.ResponseSent)
100 Authentication authentication = _authenticator.validateRequest(request,response,true); local
122 UserAuthentication authentication = new UserAuthentication("API",identity); local
    [all...]
BasicAuthenticator.java 19 package org.eclipse.jetty.security.authentication;
31 import org.eclipse.jetty.server.Authentication;
32 import org.eclipse.jetty.server.Authentication.User;
63 public Authentication validateRequest(ServletRequest req, ServletResponse res, boolean mandatory) throws ServerAuthException
101 return Authentication.UNAUTHENTICATED;
105 return Authentication.SEND_CONTINUE;
FormAuthenticator.java 19 package org.eclipse.jetty.security.authentication;
42 import org.eclipse.jetty.server.Authentication;
43 import org.eclipse.jetty.server.Authentication.User;
56 * <p>This authenticator implements form authentication will use dispatchers to
63 * {@link SessionAuthentication} to wrap Authentication results so that they
125 * @see org.eclipse.jetty.security.authentication.LoginAuthenticator#setConfiguration(org.eclipse.jetty.security.Authenticator.AuthConfiguration)
194 Authentication cached=new SessionAuthentication(getAuthMethod(),user,password);
201 public Authentication validateRequest(ServletRequest req, ServletResponse res, boolean mandatory) throws ServerAuthException
220 // Handle a request for authentication.
251 LOG.debug("Form authentication FAILED for " + StringUtil.printable(username))
273 Authentication authentication = (Authentication) session.getAttribute(SessionAuthentication.__J_AUTHENTICATED); local
    [all...]
ClientCertAuthenticator.java 19 package org.eclipse.jetty.security.authentication;
35 import org.eclipse.jetty.server.Authentication;
36 import org.eclipse.jetty.server.Authentication.User;
87 * @return Authentication for request
90 public Authentication validateRequest(ServletRequest req, ServletResponse res, boolean mandatory) throws ServerAuthException
137 return Authentication.SEND_FAILURE;
140 return Authentication.UNAUTHENTICATED;
SessionAuthentication.java 20 package org.eclipse.jetty.security.authentication;
34 import org.eclipse.jetty.server.Authentication;
41 public class SessionAuthentication implements Authentication.User, Serializable, HttpSessionActivationListener, HttpSessionBindingListener
DigestAuthenticator.java 19 package org.eclipse.jetty.security.authentication;
40 import org.eclipse.jetty.server.Authentication;
41 import org.eclipse.jetty.server.Authentication.User;
101 * @see org.eclipse.jetty.security.authentication.LoginAuthenticator#setConfiguration(org.eclipse.jetty.security.Authenticator.AuthConfiguration)
155 public Authentication validateRequest(ServletRequest req, ServletResponse res, boolean mandatory) throws ServerAuthException
248 return Authentication.SEND_CONTINUE;
251 return Authentication.UNAUTHENTICATED;
LoginAuthenticator.java 19 package org.eclipse.jetty.security.authentication;
29 import org.eclipse.jetty.server.Authentication;
  /external/jetty/src/java/org/eclipse/jetty/security/
UserAuthentication.java 21 import org.eclipse.jetty.server.Authentication;
29 public class UserAuthentication implements Authentication.User
Authenticator.java 27 import org.eclipse.jetty.server.Authentication;
28 import org.eclipse.jetty.server.Authentication.User;
36 * Various types of {@link Authentication} are returned in order to
37 * signal the next step in authentication.
52 * @return The name of the authentication method
60 * @param mandatory True if authentication is mandatory.
61 * @return An Authentication. If Authentication is successful, this will be a {@link org.eclipse.jetty.server.Authentication.User}. If a response has
63 * implement {@link org.eclipse.jetty.server.Authentication.ResponseSent}. If Authentication is not manditory, then a
    [all...]
SecurityHandler.java 35 import org.eclipse.jetty.security.authentication.DeferredAuthentication;
37 import org.eclipse.jetty.server.Authentication;
59 * Authentication.Configuration. At startup, any context init parameters
299 //register a session listener to handle securing sessions when authentication is performed
429 /** Set renew the session on Authentication.
431 * If set to true, then on authentication, the session associated with a reqeuest is invalidated and replaced with a new session.
486 // check authentication
490 Authentication authentication = baseRequest.getAuthentication(); local
491 if (authentication==null || authentication==Authentication.NOT_CHECKED
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/roboto/
awsqueryservice.py 21 Authentication = 'sign-v2'
121 return [self.Authentication]
  /external/jetty/src/java/org/eclipse/jetty/client/
HttpDestination.java 32 import org.eclipse.jetty.client.security.Authentication;
70 private Authentication _proxyAuthentication;
149 public void addAuthorization(String pathSpec, Authentication authorization)
547 Authentication auth = (Authentication)_authorizations.match(ex.getRequestURI());
641 public Authentication getProxyAuthentication()
646 public void setProxyAuthentication(Authentication authentication)
648 _proxyAuthentication = authentication;
HttpClient.java 31 import org.eclipse.jetty.client.security.Authentication;
93 private Authentication _proxyAuthentication;
300 /** Set a RealmResolver for client Authentication.
303 * BASIC and DIGEST authentication can be performed.
592 public Authentication getProxyAuthentication()
598 public void setProxyAuthentication(Authentication authentication)
600 _proxyAuthentication = authentication;
AbstractHttpConnection.java 26 import org.eclipse.jetty.client.security.Authentication;
207 Authentication auth = _destination.getProxyAuthentication();
  /external/chromium-trace/catapult/third_party/gsutil/third_party/httplib2/python2/httplib2/
__init__.py 300 if headername == 'authentication-info':
460 # Then we also need a list of URIs that have already demanded authentication
466 class Authentication(object):
500 class BasicAuthentication(Authentication):
502 Authentication.__init__(self, credentials, host, request_uri, headers, response, content, http)
510 class DigestAuthentication(Authentication):
514 Authentication.__init__(self, credentials, host, request_uri, headers, response, content, http)
553 if not response.has_key('authentication-info'):
560 updated_challenge = _parse_www_authenticate(response, 'authentication-info').get('digest', {})
568 class HmacDigestAuthentication(Authentication)
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/httplib2/python3/httplib2/
__init__.py 230 if headername == 'authentication-info':
410 # Then we also need a list of URIs that have already demanded authentication
416 class Authentication(object):
470 class BasicAuthentication(Authentication):
472 Authentication.__init__(self, credentials, host, request_uri, headers, response, content, http)
480 class DigestAuthentication(Authentication):
484 Authentication.__init__(self, credentials, host, request_uri, headers, response, content, http)
523 if 'authentication-info' not in response:
530 updated_challenge = _parse_www_authenticate(response, 'authentication-info').get('digest', {})
538 class HmacDigestAuthentication(Authentication)
    [all...]

Completed in 389 milliseconds

1 2