5 * alphabet size (in base64 encoding this is \e equal to 64)
8 #define ALPHABET_SIZE 64
12 * groups base64 manipulation methods and objects
17 static const char alphabet[ALPHABET_SIZE] =
19 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H',
20 'I', 'J', 'K', 'L', 'M' ,'N', 'O', 'P',
21 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X',
22 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f',
23 'g', 'h', 'i', 'j', 'k', 'l', 'm' ,'n',
24 'o', 'p', 'q', 'r', 's', 't', 'u', 'v',
25 'w', 'x', 'y', 'z', '0', '1', '2', '3',
26 '4', '5', '6', '7', '8', '9', '+', '/'