00001 /* vim: set et ts=4 sw=4 cindent: */ 00002 #ifndef _BASE64_H_ 00003 #define _BASE64_H_ 00004 00005 #include <string> 00006 00007 std::string base64_encode(unsigned char const* , unsigned int len); 00008 std::string base64_decode(std::string const& s); 00009 00010 #endif