| 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 | |||||
| 6 | bool base64_encode(const gsl::cstring_span<> &input, std::string &output); | ||||
| 7 | bool base64_decode(const gsl::cstring_span<> &input, std::string &output); | ||||
| 8 | |||||
| 9 | } | ||||