1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-01 00:27:44 +00:00
sapphire/src/common/Crypt/base64.h

11 lines
171 B
C
Raw Normal View History

2017-08-08 13:53:47 +02:00
#include <string>
namespace Sapphire::Common::Util
2018-10-28 21:53:21 +01:00
{
2019-03-08 11:05:32 +01:00
std::string base64Encode( uint8_t const*, uint32_t len );
2019-03-08 11:05:32 +01:00
std::string base64Decode( const std::string& s );
2017-08-08 13:53:47 +02:00
}
2018-10-28 21:53:21 +01:00