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