⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 code.h

📁 linux 上http email 协议分析程序 主要能够处理大数据量的主干网的应用
💻 H
字号:
#ifndef _CODE_FILE_H
#define _CODE_FILE_H


class CBase64 
{
public:
	CBase64();
	~CBase64();
	int Decode(char * szDecoding,int inLen, char * szOutput,int obufLen);
	void Encode( char * szEncoding, char * szOutput );

protected:
	void write_bits( unsigned int nBits, int nNumBts, char * szOutput, int& lp );
	unsigned int read_bits( int nNumBits, int* pBitsRead, int& lp );

	int m_nInputSize;
	int m_nBitsRemaining;
	unsigned long m_lBitStorage;
	char * m_szInput;

	static int m_nMask[];
	static char * m_sBase64Alphabet;
private:
};


class CQprint
{
public:
        CQprint();
        ~CQprint();

        int Decode( char * szEncoding,int inLen, char *szOutput,int obufLen);
        void Encode( char * szDecoding, char * szOutput );
private:
        static char *m_sNA;
};


#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -