Searched refs:kBase64Alphabet (Results 1 – 2 of 2) sorted by relevance
14 static const char kBase64Alphabet[64] = { variable44 out[k++] = kBase64Alphabet[(concat >> 18) & 63]; in encode_base64()45 out[k++] = kBase64Alphabet[(concat >> 12) & 63]; in encode_base64()46 out[k++] = kBase64Alphabet[(concat >> 6) & 63]; in encode_base64()47 out[k++] = kBase64Alphabet[concat & 63]; in encode_base64()
28 static const char kBase64Alphabet[64] = { variable44 for (size_t i = 0; i < sizeof(kBase64Alphabet); i++) in RFC3501Encoding()45 kInverseBase64Alphabet[(int)kBase64Alphabet[i]] = i + 1; in RFC3501Encoding()85 buffer += kBase64Alphabet[(sextet + (c >> bitsToWrite)) & 0x3f]; in Encode()183 buffer += kBase64Alphabet[sextet]; in _Unshift()