view OrthancFramework/Resources/ThirdParty/base64/base64.h @ 6032:c76b1b2ee57e pixel-anon

very first proto of pixel-anon: only tested on /instances/{id}/anonymize
author Alain Mazy <am@orthanc.team>
date Thu, 06 Mar 2025 19:10:32 +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);