Home
last modified time | relevance | path

Searched refs:kBase64Alphabet (Results 1 – 2 of 2) sorted by relevance

/haiku/src/kits/support/
H A DBase64.cpp14 static const char kBase64Alphabet[64] = { variable
44 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()
/haiku/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/
H A DResponse.cpp28 static const char kBase64Alphabet[64] = { variable
44 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()