Home
last modified time | relevance | path

Searched refs:base64Alphabet (Results 1 – 1 of 1) sorted by relevance

/development/samples/ApiDemos/src/com/example/android/mmslib/pdu/
DBase64.java37 private static byte[] base64Alphabet = new byte[BASELENGTH]; field in Base64
42 base64Alphabet[i] = (byte) -1;
45 base64Alphabet[i] = (byte) (i - 'A');
48 base64Alphabet[i] = (byte) (i - 'a' + 26);
51 base64Alphabet[i] = (byte) (i - '0' + 52);
54 base64Alphabet['+'] = 62;
55 base64Alphabet['/'] = 63;
98 b1 = base64Alphabet[base64Data[dataIndex]]; in decodeBase64()
99 b2 = base64Alphabet[base64Data[dataIndex + 1]]; in decodeBase64()
103 b3 = base64Alphabet[marker0]; in decodeBase64()
[all …]