tlx
|
Go to the source code of this file.
Namespaces | |
tlx | |
Functions | |
Base64 Encoding and Decoding | |
std::string | base64_encode (const void *data, size_t size, size_t line_break=0) |
Encode the given binary data into base64 representation as described in RFC 2045 or RFC 3548. More... | |
std::string | base64_encode (const std::string &str, size_t line_break=0) |
Encode the given binary string into base64 representation as described in RFC 2045 or RFC 3548. More... | |
std::string | base64_decode (const void *data, size_t size, bool strict=true) |
Decode a string in base64 representation as described in RFC 2045 or RFC 3548 and return the original data. More... | |
std::string | base64_decode (const std::string &str, bool strict=true) |
Decode a string in base64 representation as described in RFC 2045 or RFC 3548 and return the original data. More... | |