Ed Tanous | f927347 | 2017-02-28 16:05:13 -0800 | [diff] [blame] | 1 | #include <gsl/string_span> |
2 | #include <string> | ||||
3 | |||||
4 | namespace base64 { | ||||
5 | |||||
Ed Tanous | 9992332 | 2017-03-03 14:21:24 -0800 | [diff] [blame^] | 6 | bool base64_encode(const gsl::cstring_span<> &input, std::string &output); |
7 | bool base64_decode(const gsl::cstring_span<> &input, std::string &output); | ||||
Ed Tanous | f927347 | 2017-02-28 16:05:13 -0800 | [diff] [blame] | 8 | } |