view OrthancFramework/Resources/ThirdParty/base64/base64.h @ 5314:0b8068aa7142

revert 5306:155637655710: re-enable automatic conversion from YBR to RGB
author Alain Mazy <am@osimis.io>
date Mon, 19 Jun 2023 19:20:31 +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);