Home
last modified time | relevance | path

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

/external/apache-http/src/org/apache/commons/codec/binary/
DBase64.java102 private static byte[] base64Alphabet = new byte[BASELENGTH]; field in Base64
108 base64Alphabet[i] = (byte) -1;
111 base64Alphabet[i] = (byte) (i - 'A');
114 base64Alphabet[i] = (byte) (i - 'a' + 26);
117 base64Alphabet[i] = (byte) (i - '0' + 52);
120 base64Alphabet['+'] = 62;
121 base64Alphabet['/'] = 63;
142 } else if (base64Alphabet[octect] == -1) { in isBase64()
411 b1 = base64Alphabet[base64Data[dataIndex]]; in decodeBase64()
412 b2 = base64Alphabet[base64Data[dataIndex + 1]]; in decodeBase64()
[all …]