Searched refs:authenticationText (Results 1 - 2 of 2) sorted by relevance

/external/smack/src/org/jivesoftware/smack/sasl/
H A DSASLMechanism.java114 String authenticationText = null;
118 authenticationText = StringUtils.encodeBase64(response, false);
125 getSASLAuthentication().send(new AuthMechanism(getName(), authenticationText));
196 final private String authenticationText; field in class:SASLMechanism.AuthMechanism
198 public AuthMechanism(String name, String authenticationText) { argument
203 this.authenticationText = authenticationText;
210 if (authenticationText != null &&
211 authenticationText.trim().length() > 0) {
212 stanza.append(authenticationText);
245 final private String authenticationText; field in class:SASLMechanism.Response
251 Response(String authenticationText) argument
[all...]
H A DSASLFacebookConnect.java144 String authenticationText="";
147 authenticationText = Base64.encodeBytes(response, Base64.DONT_BREAK_LINES);
151 stanza.append(authenticationText);

Completed in 67 milliseconds