mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-01 16:37:45 +00:00
13 lines
204 B
C++
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 );
|
|
}
|
|
|
|
|