summaryrefslogtreecommitdiffstats
path: root/old/botan/build/botan/ctr.h
diff options
context:
space:
mode:
Diffstat (limited to 'old/botan/build/botan/ctr.h')
-rw-r--r--old/botan/build/botan/ctr.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/old/botan/build/botan/ctr.h b/old/botan/build/botan/ctr.h
new file mode 100644
index 0000000..aa0db57
--- /dev/null
+++ b/old/botan/build/botan/ctr.h
@@ -0,0 +1,31 @@
+/*
+* 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 <botan/modebase.h>
+#include <botan/modebase.h>
+
+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