aboutsummaryrefslogtreecommitdiffstats
path: root/include/cts.h
blob: c3218cb872d6e3a64671db5099576719e3a8ee19 (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
37
38
39
40
41
42
43
44
45
46
/*************************************************
* CTS Mode Header File                           *
* (C) 1999-2007 The Botan Project                *
*************************************************/

#ifndef BOTAN_CTS_H__
#define BOTAN_CTS_H__

#include <botan/modebase.h>

namespace Botan {

/*************************************************
* CTS Encryption                                 *
*************************************************/
class CTS_Encryption : public BlockCipherMode
   {
   public:
      CTS_Encryption(const std::string&);
      CTS_Encryption(const std::string&,
                     const SymmetricKey&, const InitializationVector&);
   private:
      void write(const byte[], u32bit);
      void end_msg();
      void encrypt(const byte[]);
   };

/*************************************************
* CTS Decryption                                 *
*************************************************/
class CTS_Decryption : public BlockCipherMode
   {
   public:
      CTS_Decryption(const std::string&);
      CTS_Decryption(const std::string&,
                     const SymmetricKey&, const InitializationVector&);
   private:
      void write(const byte[], u32bit);
      void end_msg();
      void decrypt(const byte[]);
      SecureVector<byte> temp;
   };

}

#endif