diff options
Diffstat (limited to 'Minecraft.Client/Common/Leaderboards/base64.h')
| -rw-r--r-- | Minecraft.Client/Common/Leaderboards/base64.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Minecraft.Client/Common/Leaderboards/base64.h b/Minecraft.Client/Common/Leaderboards/base64.h new file mode 100644 index 00000000..7f6a1e49 --- /dev/null +++ b/Minecraft.Client/Common/Leaderboards/base64.h @@ -0,0 +1,7 @@ +#pragma once + +#include <string> + +std::string base64_encode(std::string str); +std::string base64_encode(unsigned char const* , unsigned int len); +std::string base64_decode(std::string const& s);
\ No newline at end of file |
