mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
10 lines
250 B
C++
10 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
|