📄 par_hash.h
字号:
/************************************************** Parallel Header File ** (C) 1999-2002 The Botan Project **************************************************/#ifndef BOTAN_PAR_HASH_H__#define BOTAN_PAR_HASH_H__#include <botan/base.h>#include <vector>namespace Botan {/************************************************** Parallel **************************************************/class Parallel : public HashFunction { public: void clear() throw(); std::string name() const; HashFunction* clone() const; Parallel(const std::vector<std::string>&); ~Parallel(); private: void add_data(const byte[], u32bit); void final_result(byte[]); std::vector<HashFunction*> hashes; };}#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -