]> git.lizzy.rs Git - dragonfireclient.git/blob - src/util/base64.h
Add function to get server info.
[dragonfireclient.git] / src / util / 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