📄 cfb.h
字号:
/************************************************** CFB Mode Header File ** (C) 1999-2002 The Botan Project **************************************************/#ifndef BOTAN_CFB_H__#define BOTAN_CFB_H__#include <botan/modebase.h>namespace Botan {/************************************************** CFB Encryption **************************************************/class CFB_Encryption : public BlockCipherMode { public: void write(const byte[], u32bit); CFB_Encryption(const std::string&, const SymmetricKey&, const BlockCipherModeIV&, u32bit = 0); private: void feedback(); const u32bit FEEDBACKSIZE; };/************************************************** CFB Decryption **************************************************/class CFB_Decryption : public BlockCipherMode { public: void write(const byte[], u32bit); CFB_Decryption(const std::string&, const SymmetricKey&, const BlockCipherModeIV&, u32bit = 0); private: void feedback(); const u32bit FEEDBACKSIZE; };}#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -