Files
GabsPuNs-Project_Zenith_Main/Minecraft.Client/Consoles/PS3/Leaderboards/base64.h
GabsPuNs 5c2d0d9458 New File System and Cleanup some code Part 1
Trial code is almost cleaned.
Consoles are now unused.
stdafx unbloat for Minecraft.Client
2026-06-07 00:03:24 -04:00

7 lines
193 B
C++

#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);