📄 randpool.h
字号:
/************************************************** Randpool Header File ** (C) 1999-2002 The Botan Project **************************************************/#ifndef BOTAN_RANDPOOL_H__#define BOTAN_RANDPOOL_H__#include <botan/base.h>namespace Botan {/************************************************** Randpool **************************************************/class Randpool : public RandomNumberGenerator { public: byte random(); void randomize(byte[], u32bit); void clear() throw(); std::string name() const { return "Randpool"; } Randpool(); ~Randpool() { delete hash; } private: void add_randomness(const byte[], u32bit) throw(); void generate(u64bit); void mix_pool(); void reseed(); HashFunction* hash; SecureVector<byte> pool; SecureVector<byte> buffer; u32bit position, iteration; };}#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -