00001 #ifndef __BARRY_BASE64_H__ 00002 #define __BARRY_BASE64_H__ 00003 00004 #include <string> 00005 00006 // in-memory encode / decode 00007 bool base64_encode(const std::string &in, std::string &out); 00008 bool base64_decode(const std::string &in, std::string &out); 00009 00010 #endif 00011