debian: added giffgaff chatscripts
[barry.git] / src / base64.h
blobf13b454ca7fb4a79773207f43c5466fd0845ff9f
1 #ifndef __BARRY_BASE64_H__
2 #define __BARRY_BASE64_H__
4 #include <string>
6 // in-memory encode / decode
7 bool base64_encode(const std::string &in, std::string &out);
8 bool base64_decode(const std::string &in, std::string &out);
10 #endif