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

📄 randpool.h

📁 lots Elliptic curve cryptography codes. Use Visual c++ to compile
💻 H
字号:
#ifndef CRYPTOPP_RANDPOOL_H#define CRYPTOPP_RANDPOOL_H#include "cryptlib.h"#include "filters.h"NAMESPACE_BEGIN(CryptoPP)//! Randomness Pool/*! This class can be used to generate cryptographic quality	pseudorandom bytes after seeding the pool with IncorporateEntropy() */class CRYPTOPP_DLL RandomPool : public RandomNumberGenerator, public NotCopyable{public:	RandomPool();	bool CanIncorporateEntropy() const {return true;}	void IncorporateEntropy(const byte *input, size_t length);	void GenerateIntoBufferedTransformation(BufferedTransformation &target, const std::string &channel, lword size);	// for backwards compatibility. use RandomNumberSource, RandomNumberStore, and RandomNumberSink for other BufferTransformation functionality	void Put(const byte *input, size_t length) {IncorporateEntropy(input, length);}private:	FixedSizeSecBlock<byte, 32> m_key;	FixedSizeSecBlock<byte, 16> m_seed;	member_ptr<BlockCipher> m_pCipher;	bool m_keySet;};NAMESPACE_END#endif

⌨️ 快捷键说明

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