base64.h
00001 #ifndef __BARRY_BASE64_H__
00002 #define __BARRY_BASE64_H__
00003
00004 #include <string>
00005
00006
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