summaryrefslogtreecommitdiffstats
path: root/botan/src/stream/arc4/arc4.h
diff options
context:
space:
mode:
authorEd Baak <ed.baak@nokia.com>2010-07-26 14:06:13 +1000
committerEd Baak <ed.baak@nokia.com>2010-07-26 14:06:13 +1000
commit02e9b6740ff7851b52ab677800e94fb77e6092ed (patch)
treea38a4f4d44b53a95b5db40e5ec12b513b5896e06 /botan/src/stream/arc4/arc4.h
parenteb2fbe409d1423c0b707b9986ee1e56fa19b355a (diff)
Included Botan and ssh code to make QtUItest compile again (as a separate package without creator). Note that this is a temporary hack and will go away when we moveQtUItest into creator.
Diffstat (limited to 'botan/src/stream/arc4/arc4.h')
-rw-r--r--botan/src/stream/arc4/arc4.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/botan/src/stream/arc4/arc4.h b/botan/src/stream/arc4/arc4.h
new file mode 100644
index 0000000..aa2cea7
--- /dev/null
+++ b/botan/src/stream/arc4/arc4.h
@@ -0,0 +1,41 @@
+/*
+* ARC4
+* (C) 1999-2008 Jack Lloyd
+*
+* Distributed under the terms of the Botan license
+*/
+
+#ifndef BOTAN_ARC4_H__
+#define BOTAN_ARC4_H__
+
+#include <botan/stream_cipher.h>
+#include <botan/types.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_schedule(const byte[], u32bit);
+ void generate();
+
+ const u32bit SKIP;
+
+ SecureBuffer<byte, DEFAULT_BUFFERSIZE> buffer;
+ SecureBuffer<u32bit, 256> state;
+ u32bit X, Y, position;
+ };
+
+}
+
+#endif