minetest/src/base64.h

11 lines
250 B
C
Raw Permalink Normal View History

2012-08-19 19:30:59 -07:00
#ifndef BASE64_HEADER
#define BASE64_HEADER
#include <string>
2012-06-03 10:32:44 -07:00
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);
2012-08-19 19:30:59 -07:00
#endif // BASE64_HEADER