1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-13 14:07:46 +00:00
sapphire/src/common/Crypt/base64.h

10 lines
165 B
C++

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