minetest/src/base64.h

11 lines
250 B
C
Raw Normal View History

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