Contains some static methods for converting between binary and the standard base-64 encoding format.
|
static bool | convertToBase64 (OutputStream &base64Result, const void *sourceData, size_t sourceDataSize) |
| Converts a binary block of data into a base-64 string.
|
static bool | convertFromBase64 (OutputStream &binaryOutput, StringRef base64TextInput) |
| Converts a base-64 string back to its binary representation.
|
static String | toBase64 (const void *sourceData, size_t sourceDataSize) |
| Converts a block of binary data to a base-64 string.
|
static String | toBase64 (const String &textToEncode) |
| Converts a string's UTF-8 representation to a base-64 string.
|