mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-13 14:07:46 +00:00
10 lines
165 B
C++
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 );
|
|
}
|
|
|
|
|