?? ofb.h
字號:
/************************************************** OFB Mode Header File ** (C) 1999-2002 The Botan Project **************************************************/#ifndef BOTAN_OFB_H__#define BOTAN_OFB_H__#include <botan/modebase.h>#include <botan/ctr.h>namespace Botan {/************************************************** OFB Mode **************************************************/class OFB : public BlockCipherMode { public: void write(const byte[], u32bit); OFB(const std::string&, const SymmetricKey&, const BlockCipherModeIV&); };// DEPRECATED ALIAStypedef CTR Counter;}#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -