summaryrefslogtreecommitdiff
path: root/include/base64.hpp
blob: e024d0a48f423073e06d9a31b095f0a25ba04860 (plain)
1
2
3
4
5
6
7
8
#include <gsl/string_span>
#include <string>

namespace base64 {

bool base64_encode(const gsl::cstring_span<> &input, std::string &output);
bool base64_decode(const gsl::cstring_span<> &input, std::string &output);
}