blob: a40ab47e4970b0bd2923eccc692fa3878dee1d3f [file] [log] [blame]
Ed Tanousf9273472017-02-28 16:05:13 -08001#include <string>
2
3namespace base64 {
4
Ed Tanous9b65f1f2017-03-07 15:17:13 -08005bool base64_encode(const std::string &input, std::string &output);
6bool base64_decode(const std::string &input, std::string &output);
Ed Tanousf9273472017-02-28 16:05:13 -08007}