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

📄 randpool.h

📁 300种常用加解密算法的源码C++实现。
💻 H
字号:
#ifndef CRYPTOPP_RANDPOOL_H
#define CRYPTOPP_RANDPOOL_H

#include "cryptlib.h"
#include "misc.h"

NAMESPACE_BEGIN(CryptoPP)

class RandomPool : public RandomNumberGenerator,
				   public BufferedTransformation
{
public:
	// poolSize must be greater than 16
	RandomPool(unsigned int poolSize=384);

	// interface for BufferedTransformation
	void Put(byte inByte);
	void Put(const byte *inString, unsigned int length);
	unsigned int Get(byte &outByte);
	unsigned int Get(byte *outString, unsigned int getMax);
	unsigned int Peek(byte &outByte) const;

	// return 0 to prevent infinite loops
	unsigned long MaxRetrieveable() {return 0;}

	// interface for RandomNumberGenerator
	byte GetByte()
		{byte b; RandomPool::Get(b); return b;}
	void GetBlock(byte *output, unsigned int size)
		{Get(output, size);}

	// help compiler disambiguate
	word16 GetShort(word16 min=0, word16 max=0xffff)
		{return RandomNumberGenerator::GetShort(min, max);}
	word32 GetLong(word32 min=0, word32 max=0xffffffffL)
		{return RandomNumberGenerator::GetLong(min, max);}

protected:
	void Stir();

private:
	SecByteBlock pool, key;
	unsigned int addPos, getPos;
};

NAMESPACE_END

#endif

⌨️ 快捷键说明

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