Ed Tanous | f927347 | 2017-02-28 16:05:13 -0800 | [diff] [blame] | 1 | #include <string> |
2 | |||||
3 | namespace base64 { | ||||
4 | |||||
Ed Tanous | 9b65f1f | 2017-03-07 15:17:13 -0800 | [diff] [blame] | 5 | bool base64_encode(const std::string &input, std::string &output); |
6 | bool base64_decode(const std::string &input, std::string &output); | ||||
Ed Tanous | f927347 | 2017-02-28 16:05:13 -0800 | [diff] [blame] | 7 | } |