📄 es_file.h
字号:
/************************************************** File EntropySource Header File ** (C) 1999-2002 The Botan Project **************************************************/#ifndef BOTAN_ENTROPY_SRC_FILE_H__#define BOTAN_ENTROPY_SRC_FILE_H__#include <botan/base.h>#include <vector>#include <string>namespace Botan {/************************************************** File Based Entropy Source **************************************************/class File_EntropySource : public EntropySource { public: u32bit slow_poll(byte[], u32bit); void add_source(const std::string&); File_EntropySource(bool = true, const std::string& = ""); private: std::vector<std::string> sources; };}#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -