Home | History | Annotate | Download | only in transport

Lines Matching refs:username

286 //    S: 334 Username:
292 private void saslAuthLogin(String username, String password) throws MessagingException,
297 Base64.encodeToString(username.getBytes(), Base64.NO_WRAP),
298 "/username redacted/");
311 private void saslAuthPlain(String username, String password) throws MessagingException,
313 byte[] data = ("\000" + username + "\000" + password).getBytes();
326 private void saslAuthOAuth(String username) throws MessagingException,
331 saslAuthOAuth(username, accessToken);
334 saslAuthOAuth(username, accessToken);
338 private void saslAuthOAuth(final String username, final String accessToken) throws IOException,
340 final String authPhrase = "user=" + username + '\001' + "auth=Bearer " + accessToken +