aboutsummaryrefslogtreecommitdiffstats
path: root/src/modes/ecb/ecb.cpp
blob: 988a8b3f230c84dbf5e7e466560b1898f19d0c9f (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
/*
* ECB Mode
* (C) 1999-2007 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/

#include <botan/ecb.h>

namespace Botan {

namespace {

const u32bit PARALLEL_BLOCKS = BOTAN_PARALLEL_BLOCKS_ECB;

}

/*
* ECB_Encryption Constructor
*/
ECB_Encryption::ECB_Encryption(BlockCipher* ciph,
                               BlockCipherModePaddingMethod* pad)
   {
   cipher = ciph;
   padder = pad;

   plaintext.create(cipher->BLOCK_SIZE);
   ciphertext.create(cipher->BLOCK_SIZE * PARALLEL_BLOCKS);

   position = 0;
   }

/*
* ECB_Encryption Constructor
*/
ECB_Encryption::ECB_Encryption(BlockCipher* ciph,
                               BlockCipherModePaddingMethod* pad,
                               const SymmetricKey& key)
   {
   cipher = ciph;
   padder = pad;

   plaintext.create(cipher->BLOCK_SIZE);
   ciphertext.create(cipher->BLOCK_SIZE * PARALLEL_BLOCKS);

   position = 0;

   cipher->set_key(key);
   }

/*
* ECB_Encryption Destructor
*/
ECB_Encryption::~ECB_Encryption()
   {
   delete cipher;
   delete padder;
   }

/*
* Return an ECB mode name
*/
std::string ECB_Encryption::name() const
   {
   return (cipher->name() + "/ECB/" + padder->name());
   }

/*
* Encrypt in ECB mode
*/
void ECB_Encryption::write(const byte input[], u32bit length)
   {
   const u32bit BLOCK_SIZE = cipher->BLOCK_SIZE;

   if(position)
      {
      plaintext.copy(position, input, length);

      if(position + length >= BLOCK_SIZE)
         {
         cipher->encrypt(plaintext, ciphertext);
         send(ciphertext, BLOCK_SIZE);
         input += (BLOCK_SIZE - position);
         length -= (BLOCK_SIZE - position);
         position = 0;
         }
      }

   while(length >= BLOCK_SIZE)
      {
      const u32bit to_proc =
         std::min<u32bit>(length, ciphertext.size()) / BLOCK_SIZE;

      cipher->encrypt_n(input, ciphertext, to_proc);
      send(ciphertext, to_proc * BLOCK_SIZE);
      input += to_proc * BLOCK_SIZE;
      length -= to_proc * BLOCK_SIZE;
      }

   plaintext.copy(position, input, length);
   position += length;
   }

/*
* Finish encrypting in ECB mode
*/
void ECB_Encryption::end_msg()
   {
   const u32bit BLOCK_SIZE = cipher->BLOCK_SIZE;

   SecureVector<byte> padding(BLOCK_SIZE);
   padder->pad(padding, padding.size(), position);
   write(padding, padder->pad_bytes(BLOCK_SIZE, position));
   if(position != 0)
      throw Encoding_Error(name() + ": Did not pad to full blocksize");
   }

/*
* ECB_Decryption Constructor
*/
ECB_Decryption::ECB_Decryption(BlockCipher* ciph,
                               BlockCipherModePaddingMethod* pad)
   {
   cipher = ciph;
   padder = pad;

   ciphertext.create(cipher->BLOCK_SIZE);
   plaintext.create(cipher->BLOCK_SIZE * PARALLEL_BLOCKS);

   position = 0;
   }

/*
* ECB_Decryption Constructor
*/
ECB_Decryption::ECB_Decryption(BlockCipher* ciph,
                               BlockCipherModePaddingMethod* pad,
                               const SymmetricKey& key)
   {
   cipher = ciph;
   padder = pad;

   ciphertext.create(cipher->BLOCK_SIZE);
   plaintext.create(cipher->BLOCK_SIZE * PARALLEL_BLOCKS);

   position = 0;

   cipher->set_key(key);
   }

/*
* ECB_Decryption Destructor
*/
ECB_Decryption::~ECB_Decryption()
   {
   delete cipher;
   delete padder;
   }

/*
* Return an ECB mode name
*/
std::string ECB_Decryption::name() const
   {
   return (cipher->name() + "/ECB/" + padder->name());
   }

/*
* Decrypt in ECB mode
*/
void ECB_Decryption::write(const byte input[], u32bit length)
   {
   const u32bit BLOCK_SIZE = cipher->BLOCK_SIZE;

   if(position)
      {
      ciphertext.copy(position, input, length);

      if(position + length > BLOCK_SIZE)
         {
         cipher->decrypt(ciphertext, plaintext);
         send(plaintext, BLOCK_SIZE);
         input += (BLOCK_SIZE - position);
         length -= (BLOCK_SIZE - position);
         position = 0;
         }
      }

   while(length > BLOCK_SIZE)
      {
      /* Always leave at least 1 byte left over, to ensure that (as long
         as the input message actually is a multiple of the block size)
         we will have the full final block left over in end_msg so as
         to remove the padding
      */
      const u32bit to_proc =
         std::min<u32bit>(length - 1, plaintext.size()) / BLOCK_SIZE;

      cipher->decrypt_n(input, plaintext, to_proc);
      send(plaintext, to_proc * BLOCK_SIZE);
      input += to_proc * BLOCK_SIZE;
      length -= to_proc * BLOCK_SIZE;
      }

   ciphertext.copy(position, input, length);
   position += length;
   }

/*
* Finish decrypting in ECB mode
*/
void ECB_Decryption::end_msg()
   {
   if(position != cipher->BLOCK_SIZE)
      throw Decoding_Error(name());

   cipher->decrypt(ciphertext);
   send(ciphertext, padder->unpad(ciphertext, cipher->BLOCK_SIZE));
   position = 0;
   }

}