1
0
mirror of https://github.com/moparisthebest/minetest synced 2024-08-13 16:53:49 -04:00
minetest/src/base64.h

10 lines
249 B
C
Raw Normal View History

2012-08-19 22:30:59 -04:00
#ifndef BASE64_HEADER
#define BASE64_HEADER
#include <string>
2012-06-03 13: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-19 22:30:59 -04:00
#endif // BASE64_HEADER