blob: e024d0a48f423073e06d9a31b095f0a25ba04860 [file] [log] [blame]
Ed Tanousf9273472017-02-28 16:05:13 -08001#include <gsl/string_span>
2#include <string>
3
4namespace base64 {
5
Ed Tanous99923322017-03-03 14:21:24 -08006bool base64_encode(const gsl::cstring_span<> &input, std::string &output);
7bool base64_decode(const gsl::cstring_span<> &input, std::string &output);
Ed Tanousf9273472017-02-28 16:05:13 -08008}