📄 mdx_hash.h
字号:
/************************************************** MDx Hash Function Header File ** (C) 1999-2002 The Botan Project **************************************************/#ifndef BOTAN_MDX_BASE_H__#define BOTAN_MDX_BASE_H__#include <botan/base.h>namespace Botan {/************************************************** MDx Hash Function Base Class **************************************************/class MDx_HashFunction : public HashFunction { public: MDx_HashFunction(u32bit, u32bit); virtual ~MDx_HashFunction() {} protected: SecureVector<byte> buffer; u64bit count, position; private: virtual void hash(const byte[]) = 0; void add_data(const byte[], u32bit); };}#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -