view OrthancFramework/Resources/ThirdParty/base64/base64.h @ 6006:318f3234e9ed

merge
author Alain Mazy <am@orthanc.team>
date Tue, 18 Feb 2025 17:35:27 +0100
parents d25f4c0fa160
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);