view OrthancFramework/Resources/ThirdParty/base64/base64.h @ 5094:c94c1e08340e Orthanc-1.11.2

fix GetResourceType prototype
author Alain Mazy <am@osimis.io>
date Mon, 10 Oct 2022 10:27:09 +0200
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);