18#ifndef _BASE64_H_INCLUDED_
19#define _BASE64_H_INCLUDED_
22#include "upnppexports.hxx"
26void UPNPP_API base64_encode(
const std::string& in, std::string& out);
27bool UPNPP_API base64_decode(
const std::string& in, std::string& out);
28inline std::string base64_encode(
const std::string& in)
34inline std::string base64_decode(
const std::string& in)
37 if (base64_decode(in, o))
Deal with data for the SOAP action protocol.
Definition base64.cxx:26