Home
last modified time | relevance | path

Searched refs:base64Alphabet (Results 1 – 2 of 2) 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 …]
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/
DBase64Variant.java111 …public Base64Variant(String name, String base64Alphabet, boolean usesPadding, char paddingChar, in… in Base64Variant() argument
121 int alphaLen = base64Alphabet.length(); in Base64Variant()
127 base64Alphabet.getChars(0, alphaLen, _base64ToAsciiC, 0); in Base64Variant()