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

  /external/smack/src/org/jivesoftware/smack/
NonSASLAuthentication.java 24 import org.jivesoftware.smack.packet.Authentication;
32 * Implementation of JEP-0078: Non-SASL Authentication. Follow the following
60 // If we send an authentication packet in "get" mode with just the username,
61 // the server will return the list of authentication protocols it supports.
62 Authentication discoveryAuth = new Authentication();
80 Authentication authTypes = (Authentication) response;
83 // Now, create the authentication packet we'll send to the server.
84 Authentication auth = new Authentication();
    [all...]
  /external/smack/src/org/jivesoftware/smack/packet/
Authentication.java 26 * Authentication packet, which can be used to login to a XMPP server as well
29 public class Authentication extends IQ {
37 * Create a new authentication packet. By default, the packet will be in
38 * "set" mode in order to perform an actual authentication with the server.
39 * In order to send a "get" request to get the available authentication
44 public Authentication() {
88 * authentication compared to plain text. The digest is the hex-encoded
90 * digest and password are set, digest authentication will be used. If
91 * only one value is set, the respective authentication mode will be used.
101 * digests offer a more secure alternative for authentication compared t
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/httplib2/
__init__.py 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)
    [all...]
  /external/smack/src/org/jivesoftware/smack/util/
PacketParserUtils.java.orig 34 import org.jivesoftware.smack.packet.Authentication;
384 private static Authentication parseAuthentication(XmlPullParser parser) throws Exception {
385 Authentication authentication = new Authentication();
391 authentication.setUsername(parser.nextText());
394 authentication.setPassword(parser.nextText());
397 authentication.setDigest(parser.nextText());
400 authentication.setResource(parser.nextText());
409 return authentication;
    [all...]
PacketParserUtils.java 33 import org.jivesoftware.smack.packet.Authentication;
383 private static Authentication parseAuthentication(XmlPullParser parser) throws Exception {
384 Authentication authentication = new Authentication(); local
390 authentication.setUsername(parser.nextText());
393 authentication.setPassword(parser.nextText());
396 authentication.setDigest(parser.nextText());
399 authentication.setResource(parser.nextText());
408 return authentication;
    [all...]
  /external/mdnsresponder/mDNSCore/
mDNSEmbeddedAPI.h     [all...]
  /external/dropbear/libtomcrypt/
crypt.tex     [all...]

Completed in 235 milliseconds