Searched refs:base64_decode_tab (Results 1 – 1 of 1) sorted by relevance
39 static char base64_decode_tab[] = { variable79 char1 = base64_decode_tab[chr[0]] & 0xFF; in outdec64()80 char2 = base64_decode_tab[chr[1]] & 0xFF; in outdec64()86 char1 = base64_decode_tab[chr[0]] & 0xFF; in outdec64()87 char2 = base64_decode_tab[chr[1]] & 0xFF; in outdec64()88 char3 = base64_decode_tab[chr[2]] & 0xFF; in outdec64()96 char1 = base64_decode_tab[chr[0]] & 0xFF; in outdec64()97 char2 = base64_decode_tab[chr[1]] & 0xFF; in outdec64()98 char3 = base64_decode_tab[chr[2]] & 0xFF; in outdec64()99 char4 = base64_decode_tab[chr[3]] & 0xFF; in outdec64()