HomeSort by relevance Sort by last modified time
    Searched defs:mechanisms (Results 1 - 5 of 5) sorted by null

  /external/smack/src/org/jivesoftware/smack/sasl/
SASLGSSAPIMechanism.java 62 String[] mechanisms = { getName() }; local
65 sc = Sasl.createSaslClient(mechanisms, username, "xmpp", host, props, cbh);
81 String[] mechanisms = { getName() }; local
84 sc = Sasl.createSaslClient(mechanisms, username, "xmpp", host, props, this);
SASLMechanism.java 43 * Base class for SASL mechanisms. Subclasses must implement these methods:
90 String[] mechanisms = { getName() }; local
92 sc = Sasl.createSaslClient(mechanisms, username, "xmpp", host, props, this);
107 String[] mechanisms = { getName() }; local
109 sc = Sasl.createSaslClient(mechanisms, username, "xmpp", host, props, cbh);
SASLFacebookConnect.java 22 * This class is originally from http://code.google.com/p/fbgc/source/browse/trunk/daemon/src/main/java/org/albino/mechanisms/FacebookConnectSASLMechanism.java
42 // String[] mechanisms = { getName() };
44 // sc = Sasl.createSaslClient(mechanisms, null, "xmpp", hostname, props,
86 String[] mechanisms = { "DIGEST-MD5" }; local
88 sc = Sasl.createSaslClient(mechanisms, null, "xmpp", host, props, this);
94 String[] mechanisms = { "DIGEST-MD5" }; local
96 sc = Sasl.createSaslClient(mechanisms, null, "xmpp", host, props, cbh);
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
xmpplogintask.cc 198 // Collect together the SASL auth mechanisms presented by the server
199 std::vector<std::string> mechanisms; local
205 mechanisms.push_back(pelMech->BodyText());
208 // Given all the mechanisms, choose the best
209 std::string choice(pctx_->ChooseBestSaslMechanism(mechanisms, pctx_->IsEncrypted()));
  /external/smack/src/org/jivesoftware/smack/util/
PacketParserUtils.java 526 * Parse the available SASL mechanisms reported from the server.
528 * @param parser the XML parser, positioned at the start of the mechanisms stanza.
529 * @return a collection of Stings with the mechanisms included in the mechanisms stanza.
533 List<String> mechanisms = new ArrayList<String>(); local
541 mechanisms.add(parser.nextText());
545 if (parser.getName().equals("mechanisms")) {
550 return mechanisms;
    [all...]

Completed in 202 milliseconds