mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-30 16:17:46 +00:00
12 lines
199 B
C
12 lines
199 B
C
![]() |
#include <string>
|
||
|
|
||
|
namespace Core
|
||
|
{
|
||
|
namespace Util
|
||
|
{
|
||
|
std::string base64_encode( unsigned char const*, unsigned int len );
|
||
|
std::string base64_decode( std::string const& s );
|
||
|
}
|
||
|
}
|
||
|
|