HomeSort by relevance Sort by last modified time
    Searched full:authenticationtext (Results 1 - 2 of 2) sorted by null

  /external/smack/src/org/jivesoftware/smack/sasl/
SASLMechanism.java 114 String authenticationText = null;
118 authenticationText = StringUtils.encodeBase64(response, false);
125 getSASLAuthentication().send(new AuthMechanism(getName(), authenticationText));
196 final private String authenticationText;
198 public AuthMechanism(String name, String authenticationText) {
203 this.authenticationText = authenticationText;
210 if (authenticationText != null &&
211 authenticationText.trim().length() > 0) {
212 stanza.append(authenticationText);
    [all...]
SASLFacebookConnect.java 144 String authenticationText="";
147 authenticationText = Base64.encodeBytes(response, Base64.DONT_BREAK_LINES);
151 stanza.append(authenticationText);

Completed in 74 milliseconds