📄 base64.h
字号:
// Base64.h: interface for the Base64 class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_BASE64_H__ACEE4CAA_0659_4EF6_8EEC_CBE495C542C5__INCLUDED_)
#define AFX_BASE64_H__ACEE4CAA_0659_4EF6_8EEC_CBE495C542C5__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#define MAX_BASE64_BUFFER (1024*6+1)
class Base64
{
public:
bool DeCode(char* source);
bool GetRes(char* result,int lenth);
int GetResLengh();
bool EnCode(char* source,int len);
Base64();
virtual ~Base64();
private:
char m_resultbuffer[MAX_BASE64_BUFFER];
int reslenth;
};
#endif // !defined(AFX_BASE64_H__ACEE4CAA_0659_4EF6_8EEC_CBE495C542C5__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -