blob: f5ff338cae6bfef70d3179ac9a602acc729bc2b6 [file] [log] [blame]
Ed Tanousf9273472017-02-28 16:05:13 -08001#include <gsl/string_span>
2#include <string>
3
4namespace 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}