base64.h

来自「常用字符串hash算法」· C头文件 代码 · 共 37 行

H
37
字号
#ifndef CRYPTOPP_BASE64_H#define CRYPTOPP_BASE64_H#include "basecode.h"NAMESPACE_BEGIN(CryptoPP)//! Base64 Encoder Class class Base64Encoder : public SimpleProxyFilter{public:	Base64Encoder(BufferedTransformation *attachment = NULL, bool insertLineBreaks = true, int maxLineLength = 72)		: SimpleProxyFilter(new BaseN_Encoder(new Grouper), attachment)	{		IsolatedInitialize(MakeParameters("InsertLineBreaks", insertLineBreaks)("MaxLineLength", maxLineLength));	}	void IsolatedInitialize(const NameValuePairs &parameters);};//! Base64 Decoder Class class Base64Decoder : public BaseN_Decoder{public:	Base64Decoder(BufferedTransformation *attachment = NULL)		: BaseN_Decoder(GetDecodingLookupArray(), 6, attachment) {}	void IsolatedInitialize(const NameValuePairs &parameters) {}private:	static const int *GetDecodingLookupArray();};NAMESPACE_END#endif

⌨️ 快捷键说明

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