aboutsummaryrefslogtreecommitdiffstats
path: root/src/eu/siacs/conversations/utils/SASL.java
blob: cda1f97beaa9ebad36332099c9e4305b0092ec38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package eu.siacs.conversations.utils;

import android.util.Base64;

public class SASL {
	public static String plain(String username, String password) {
		byte[] userBytes = username.getBytes();
		int userLenght = userBytes.length;
		byte[] passwordBytes = password.getBytes();
		byte[] saslBytes = new byte[userBytes.length+passwordBytes.length+2];
		saslBytes[0] = 0x0;
		for(int i = 1; i < saslBytes.length; ++i) {
			if (i<=userLenght) {
				saslBytes[i] = userBytes[i-1];
			} else if (i==userLenght+1) {
				saslBytes[i] = 0x0;
			} else {
				saslBytes[i] = passwordBytes[i-(userLenght+2)];
			}
		}
		
		return Base64.encodeToString(saslBytes, Base64.DEFAULT);
	}
}