view Resources/ThirdParty/base64/base64.h @ 3630:dfd9a2229c18 toa2020012702

Added tag toa2020012701 for changeset 19966d299685
author Benjamin Golinvaux <bgo@osimis.io>
date Mon, 27 Jan 2020 14:32:30 +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);