Home | History | Annotate | Download | only in httplib2

Lines Matching defs:Authentication

251             if headername == 'authentication-info':
408 # Then we also need a list of URIs that have already demanded authentication
414 class Authentication(object):
448 class BasicAuthentication(Authentication):
450 Authentication.__init__(self, credentials, host, request_uri, headers, response, content, http)
458 class DigestAuthentication(Authentication):
462 Authentication.__init__(self, credentials, host, request_uri, headers, response, content, http)
500 if not response.has_key('authentication-info'):
507 updated_challenge = _parse_www_authenticate(response, 'authentication-info').get('digest', {})
515 class HmacDigestAuthentication(Authentication):
520 Authentication.__init__(self, credentials, host, request_uri, headers, response, content, http)
577 class WsseAuthentication(Authentication):
586 Authentication.__init__(self, credentials, host, request_uri, headers, response, content, http)
601 class GoogleLoginAuthentication(Authentication):
604 Authentication.__init__(self, credentials, host, request_uri, headers, response, content, http)
845 any time a request requires authentication."""
850 any time a request requires authentication."""
855 that are used for authentication"""