minetest/src/base64.h

10 lines
249 B
C
Raw Normal View History

2012-08-20 04:30:59 +02:00
#ifndef BASE64_HEADER
#define BASE64_HEADER
#include <string>
2012-06-03 19:32:44 +02: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-20 04:30:59 +02:00
#endif // BASE64_HEADER