summaryrefslogtreecommitdiff
path: root/src/util/base64.h
blob: 1cb175518d5f2f4d367409caa7082c3087375c16 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef BASE64_HEADER
#define BASE64_HEADER

#include <string>

bool base64_is_valid(std::string const& s);
std::string base64_encode(unsigned char const* , unsigned int len);
std::string base64_decode(std::string const& s);

#endif // BASE64_HEADER