mirror of
https://github.com/minetest/minetest.git
synced 2024-11-11 02:03:46 +01: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
|