bool base64Decode(const char *encodedTextSrc, size_t encodedTextSrcLen, void *dstBinary, size_t dstSize, size_t &dstBinaryLen)
This method decodes a Base64 string to its binary representation.
bool base64Encode(const void *binarySrc, size_t binarySrcLen, char *dstEncodedText, size_t dstSize, size_t &encodedOutputStringLen, bool insertMIMELineFeeds=false)
This method encodes the specified binary data as Base64 (standard, with padding).