Go to the source code of this file.
Functions | |
GZ_COMMON_VISIBLE std::string | Base64Decode (const std::string &_encodedString) |
Decode a base64 string. More... | |
GZ_COMMON_VISIBLE void | Base64Encode (const char *_bytesToEncode, unsigned int _len, std::string &_result) |
Encode a binary string into base 64. More... | |
GZ_COMMON_VISIBLE std::string Base64Decode | ( | const std::string & | _encodedString | ) |
Decode a base64 string.
[in] | _encodedString | A base 64 encoded string. |
GZ_COMMON_VISIBLE void Base64Encode | ( | const char * | _bytesToEncode, |
unsigned int | _len, | ||
std::string & | _result | ||
) |
Encode a binary string into base 64.
[in] | _bytesToEncode | String of bytes to encode. |
[in] | _len | Length of _bytesToEncode. |
[out] | _result | Based64 string is appended to this string. |