#ifndef _BASE64_H #define _BASE64_H #include class Base64 { public: static int decode(MemBlock &h64, MemBlock &htext); static int decode(MemBlock &h64, MemBlock &htext); static int encode(MemBlock &htext, MemBlock &h64, int linelength); static int encode(MemBlock &htext, MemBlock &h64, int linelength); private: static char encodingTable[64]; }; #endif