]> git.ipfire.org Git - thirdparty/pdns.git/blob - pdns/base64.hh
use polarssl base64
[thirdparty/pdns.git] / pdns / base64.hh
1 #ifndef PDNS_BASE64_HH
2 #define PDNS_BASE64_HH
3
4 #include <string>
5
6 int B64Decode(const std::string& src, std::string& dst);
7 std::string Base64Encode (const std::string& src);
8
9 #endif