blob: a40ab47e4970b0bd2923eccc692fa3878dee1d3f [file] [log] [blame]
#include <string>
namespace base64 {
bool base64_encode(const std::string &input, std::string &output);
bool base64_decode(const std::string &input, std::string &output);
}