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