mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-30 16:17:46 +00:00
10 lines
171 B
C++
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 );
|
|
}
|
|
|
|
|