|
5207
- 皇帝
- 1983-12-1
- 1542
- 2020
- 93
- 3909.8 M
|
发表者
t
T
发表于 2009-06-26 20:35
|只看楼主
- /************************************************
- 头文件ZBase64.h
- ************************************************/
- #ifndef _ZBASE64
- #define _ZBASE64
- #pragma warning(disable:4786)
- #include
- using namespace std;
- class ZBase64
- {
- private:
- //Base64编码解码表
- char* m_Base64_Table;
- public:
- //构造
- ZBase64();
- //编码
- string EncodeBase64(const string strSource);
- //解码
- string DecodeBase64(const string strSource);
- };
- #endif
复制代码
|