/* * CTR Mode * (C) 1999-2007 Jack Lloyd * * Distributed under the terms of the Botan license */ #ifndef BOTAN_COUNTER_MODE_H__ #define BOTAN_COUNTER_MODE_H__ #include #include namespace Botan { /* * CTR-BE Mode */ class BOTAN_DLL CTR_BE : public BlockCipherMode { public: CTR_BE(BlockCipher*); CTR_BE(BlockCipher*, const SymmetricKey&, const InitializationVector&); private: void write(const byte[], u32bit); void increment_counter(); }; } #endif