]> git.lizzy.rs Git - dragonfireclient.git/blob - src/base64.h
Fix serverlist code style, const-correctness, and types
[dragonfireclient.git] / src / base64.h
1 #ifndef BASE64_HEADER
2 #define BASE64_HEADER
3
4 #include <string>
5
6 bool base64_is_valid(std::string const& s);
7 std::string base64_encode(unsigned char const* , unsigned int len);
8 std::string base64_decode(std::string const& s);
9
10 #endif // BASE64_HEADER