view Resources/ThirdParty/base64/base64.h @ 3632:139730fe3078

Added tag toa2020012703 for changeset 799a8278b151
author Benjamin Golinvaux <bgo@osimis.io>
date Mon, 27 Jan 2020 15:24:11 +0100
parents 2e7c5c15ba25
children
line wrap: on
line source

#include <string>

void base64_encode(std::string& result, const std::string& stringToEncode);
void base64_decode(std::string& result, const std::string& s);