aboutsummaryrefslogtreecommitdiffstats
path: root/src/modes/ctr/ctr.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-09-28 19:29:24 +0000
committerlloyd <[email protected]>2008-09-28 19:29:24 +0000
commit9bcfe627321ddc81691b835dffaa6324ac4684a4 (patch)
treefe5e8ae9813b853549558b59833022e87e83981b /src/modes/ctr/ctr.h
parent9822a701516396b7de4e41339faecd48ff8dc8ff (diff)
Move all modules into src/ directory
Diffstat (limited to 'src/modes/ctr/ctr.h')
-rw-r--r--src/modes/ctr/ctr.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/modes/ctr/ctr.h b/src/modes/ctr/ctr.h
new file mode 100644
index 000000000..c3217a5d1
--- /dev/null
+++ b/src/modes/ctr/ctr.h
@@ -0,0 +1,29 @@
+/*************************************************
+* CTR Mode Header File *
+* (C) 1999-2007 Jack Lloyd *
+*************************************************/
+
+#ifndef BOTAN_CTR_H__
+#define BOTAN_CTR_H__
+
+#include <botan/modebase.h>
+
+namespace Botan {
+
+/*************************************************
+* CTR-BE Mode *
+*************************************************/
+class BOTAN_DLL CTR_BE : public BlockCipherMode
+ {
+ public:
+ CTR_BE(const std::string&);
+ CTR_BE(const std::string&,
+ const SymmetricKey&, const InitializationVector&);
+ private:
+ void write(const byte[], u32bit);
+ void increment_counter();
+ };
+
+}
+
+#endif