1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-30 16:17:46 +00:00
sapphire/src/common/Crypt/base64.h

10 lines
171 B
C++

#include <string>
namespace Sapphire::Common::Util
{
std::string base64Encode( uint8_t const*, uint32_t len );
std::string base64Decode( const std::string& s );
}