/* */ #ifndef _BASE64_H_ #define _BASE64_H_ #include #include "common.h" using namespace std; class Base64 { private: static void part_encode(const unsigned char* sub, int subLength, unsigned char* buf); static string part_encode(const string& subplain); static string part_decode(const string& subCrypted); static char getValue(char ch); public: static string encode(const string& plain); // caller must deallocate the memory used by result. static void encode(const unsigned char* src, int srcLength, unsigned char*& result, int& resultLength); static string decode(const string& crypted); // caller must deallocate the memory used by result. static void decode(const unsigned char* src, int srcLength, unsigned char*& result, int& resultLength); }; #endif // _BASE64_H_