1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-01 16:37:45 +00:00
sapphire/src/common/Crypt/base64.h
2024-06-19 18:28:32 +02:00

13 lines
204 B
C++

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