aboutsummaryrefslogtreecommitdiffstats
path: root/src/cipher/arc4/arc4.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/cipher/arc4/arc4.h
parent9822a701516396b7de4e41339faecd48ff8dc8ff (diff)
Move all modules into src/ directory
Diffstat (limited to 'src/cipher/arc4/arc4.h')
-rw-r--r--src/cipher/arc4/arc4.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/cipher/arc4/arc4.h b/src/cipher/arc4/arc4.h
new file mode 100644
index 000000000..c99691484
--- /dev/null
+++ b/src/cipher/arc4/arc4.h
@@ -0,0 +1,38 @@
+/*************************************************
+* ARC4 Header File *
+* (C) 1999-2008 Jack Lloyd *
+*************************************************/
+
+#ifndef BOTAN_ARC4_H__
+#define BOTAN_ARC4_H__
+
+#include <botan/base.h>
+
+namespace Botan {
+
+/*************************************************
+* ARC4 *
+*************************************************/
+class BOTAN_DLL ARC4 : public StreamCipher
+ {
+ public:
+ void clear() throw();
+ std::string name() const;
+ StreamCipher* clone() const { return new ARC4(SKIP); }
+ ARC4(u32bit = 0);
+ ~ARC4() { clear(); }
+ private:
+ void cipher(const byte[], byte[], u32bit);
+ void key(const byte[], u32bit);
+ void generate();
+
+ const u32bit SKIP;
+
+ SecureBuffer<byte, DEFAULT_BUFFERSIZE> buffer;
+ SecureBuffer<u32bit, 256> state;
+ u32bit X, Y, position;
+ };
+
+}
+
+#endif