aboutsummaryrefslogtreecommitdiffstats
path: root/include/arc4.h
blob: 7cba9a620f34fe2e18023d4d241eb9a1f7f919c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*************************************************
* ARC4 Header File                               *
* (C) 1999-2006 The Botan Project                *
*************************************************/

#ifndef BOTAN_ARC4_H__
#define BOTAN_ARC4_H__

#include <botan/base.h>

namespace Botan {

/*************************************************
* ARC4                                           *
*************************************************/
class 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, 1024> buffer;
      SecureBuffer<u32bit, 256> state;
      u32bit X, Y, position;
   };

}

#endif