Open Model Railroad Network (OpenMRN)
Loading...
Searching...
No Matches
Base64.hxx
Go to the documentation of this file.
1
35#ifndef _UTILS_BASE64_HXX_
36#define _UTILS_BASE64_HXX_
37
38#include <string>
39
43std::string base64_encode(const std::string &binary);
44
50bool base64_decode(const std::string &base64, std::string *data);
51
52#endif // _UTILS_BASE64_HXX_
std::string base64_encode(const std::string &binary)
Performs encoding of data in base64 format.
Definition Base64.cxx:43
bool base64_decode(const std::string &base64, std::string *data)
Performs decoding of data from base64 format to binary.
Definition Base64.cxx:113