mirror of
https://github.com/moparisthebest/minetest
synced 2024-11-07 18:05:08 -05:00
11 lines
250 B
C++
11 lines
250 B
C++
#ifndef BASE64_HEADER
|
|
#define BASE64_HEADER
|
|
|
|
#include <string>
|
|
|
|
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);
|
|
|
|
#endif // BASE64_HEADER
|