aboutsummaryrefslogtreecommitdiffstats
path: root/src/modes/ctr/ctr.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/modes/ctr/ctr.h')
-rw-r--r--src/modes/ctr/ctr.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/modes/ctr/ctr.h b/src/modes/ctr/ctr.h
deleted file mode 100644
index aa0db5761..000000000
--- a/src/modes/ctr/ctr.h
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
-* 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