Searched refs:base64Alphabet (Results 1 – 2 of 2) sorted by relevance
102 private static byte[] base64Alphabet = new byte[BASELENGTH]; field in Base64108 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 …]
111 …public Base64Variant(String name, String base64Alphabet, boolean usesPadding, char paddingChar, in… in Base64Variant() argument121 int alphaLen = base64Alphabet.length(); in Base64Variant()127 base64Alphabet.getChars(0, alphaLen, _base64ToAsciiC, 0); in Base64Variant()