New test.
[mono.git] / mcs / class / corlib / Mono.Security.Cryptography / SymmetricTransform.cs
1 //
2 // Mono.Security.Cryptography.SymmetricTransform implementation
3 //
4 // Authors:
5 //      Thomas Neidhart (tome@sbox.tugraz.at)
6 //      Sebastien Pouliot <sebastien@ximian.com>
7 //
8 // Portions (C) 2002, 2003 Motus Technologies Inc. (http://www.motus.com)
9 // Copyright (C) 2004-2005 Novell, Inc (http://www.novell.com)
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 using System;
32 using System.Security.Cryptography;
33
34 namespace Mono.Security.Cryptography {
35
36         // This class implement most of the common code required for symmetric
37         // algorithm transforms, like:
38         // - CipherMode: Builds CBC and CFB on top of (descendant supplied) ECB
39         // - PaddingMode, transform properties, multiple blocks, reuse...
40         //
41         // Descendants MUST:
42         // - intialize themselves (like key expansion, ...)
43         // - override the ECB (Electronic Code Book) method which will only be
44         //   called using BlockSize byte[] array.
45         internal abstract class SymmetricTransform : ICryptoTransform {
46                 protected SymmetricAlgorithm algo;
47                 protected bool encrypt;
48                 private int BlockSizeByte;
49                 private byte[] temp;
50                 private byte[] temp2;
51                 private byte[] workBuff;
52                 private byte[] workout;
53                 private int FeedBackByte;
54                 private int FeedBackIter;
55                 private bool m_disposed = false;
56                 private bool lastBlock;
57
58                 public SymmetricTransform (SymmetricAlgorithm symmAlgo, bool encryption, byte[] rgbIV) 
59                 {
60                         algo = symmAlgo;
61                         encrypt = encryption;
62                         BlockSizeByte = (algo.BlockSize >> 3);
63
64                         if (rgbIV == null) {
65                                 rgbIV = KeyBuilder.IV (BlockSizeByte);
66                         } else {
67                                 rgbIV = (byte[]) rgbIV.Clone ();
68                         }
69 #if NET_2_0
70                         // compare the IV length with the "currently selected" block size and *ignore* IV that are too big
71                         if (rgbIV.Length < BlockSizeByte) {
72                                 string msg = Locale.GetText ("IV is too small ({0} bytes), it should be {1} bytes long.",
73                                         rgbIV.Length, BlockSizeByte);
74                                 throw new CryptographicException (msg);
75                         }
76 #endif
77                         // mode buffers
78                         temp = new byte [BlockSizeByte];
79                         Buffer.BlockCopy (rgbIV, 0, temp, 0, System.Math.Min (BlockSizeByte, rgbIV.Length));
80                         temp2 = new byte [BlockSizeByte];
81                         FeedBackByte = (algo.FeedbackSize >> 3);
82                         if (FeedBackByte != 0)
83                                 FeedBackIter = (int) BlockSizeByte / FeedBackByte;
84                         // transform buffers
85                         workBuff = new byte [BlockSizeByte];
86                         workout =  new byte [BlockSizeByte];
87                 }
88
89                 ~SymmetricTransform () 
90                 {
91                         Dispose (false);
92                 }
93
94                 void IDisposable.Dispose () 
95                 {
96                         Dispose (true);
97                         GC.SuppressFinalize (this);  // Finalization is now unnecessary
98                 }
99
100                 // MUST be overriden by classes using unmanaged ressources
101                 // the override method must call the base class
102                 protected virtual void Dispose (bool disposing) 
103                 {
104                         if (!m_disposed) {
105                                 if (disposing) {
106                                         // dispose managed object: zeroize and free
107                                         Array.Clear (temp, 0, BlockSizeByte);
108                                         temp = null;
109                                         Array.Clear (temp2, 0, BlockSizeByte);
110                                         temp2 = null;
111                                 }
112                                 m_disposed = true;
113                         }
114                 }
115
116                 public virtual bool CanTransformMultipleBlocks {
117                         get { return true; }
118                 }
119
120                 public virtual bool CanReuseTransform {
121                         get { return false; }
122                 }
123
124                 public virtual int InputBlockSize {
125                         get { return BlockSizeByte; }
126                 }
127
128                 public virtual int OutputBlockSize {
129                         get { return BlockSizeByte; }
130                 }
131
132                 // note: Each block MUST be BlockSizeValue in size!!!
133                 // i.e. Any padding must be done before calling this method
134                 protected virtual void Transform (byte[] input, byte[] output) 
135                 {
136                         switch (algo.Mode) {
137                         case CipherMode.ECB:
138                                 ECB (input, output);
139                                 break;
140                         case CipherMode.CBC:
141                                 CBC (input, output);
142                                 break;
143                         case CipherMode.CFB:
144                                 CFB (input, output);
145                                 break;
146                         case CipherMode.OFB:
147                                 OFB (input, output);
148                                 break;
149                         case CipherMode.CTS:
150                                 CTS (input, output);
151                                 break;
152                         default:
153                                 throw new NotImplementedException ("Unkown CipherMode" + algo.Mode.ToString ());
154                         }
155                 }
156
157                 // Electronic Code Book (ECB)
158                 protected abstract void ECB (byte[] input, byte[] output); 
159
160                 // Cipher-Block-Chaining (CBC)
161                 protected virtual void CBC (byte[] input, byte[] output) 
162                 {
163                         if (encrypt) {
164                                 for (int i = 0; i < BlockSizeByte; i++)
165                                         temp[i] ^= input[i];
166                                 ECB (temp, output);
167                                 Buffer.BlockCopy (output, 0, temp, 0, BlockSizeByte);
168                         }
169                         else {
170                                 Buffer.BlockCopy (input, 0, temp2, 0, BlockSizeByte);
171                                 ECB (input, output);
172                                 for (int i = 0; i < BlockSizeByte; i++)
173                                         output[i] ^= temp[i];
174                                 Buffer.BlockCopy (temp2, 0, temp, 0, BlockSizeByte);
175                         }
176                 }
177
178                 // Cipher-FeedBack (CFB)
179                 protected virtual void CFB (byte[] input, byte[] output) 
180                 {
181                         if (encrypt) {
182                                 for (int x = 0; x < FeedBackIter; x++) {
183                                         // temp is first initialized with the IV
184                                         ECB (temp, temp2);
185
186                                         for (int i = 0; i < FeedBackByte; i++)
187                                                 output[i + x] = (byte)(temp2[i] ^ input[i + x]);
188                                         Buffer.BlockCopy (temp, FeedBackByte, temp, 0, BlockSizeByte - FeedBackByte);
189                                         Buffer.BlockCopy (output, x, temp, BlockSizeByte - FeedBackByte, FeedBackByte);
190                                 }
191                         }
192                         else {
193                                 for (int x = 0; x < FeedBackIter; x++) {
194                                         // we do not really decrypt this data!
195                                         encrypt = true;
196                                         // temp is first initialized with the IV
197                                         ECB (temp, temp2);
198                                         encrypt = false;
199
200                                         Buffer.BlockCopy (temp, FeedBackByte, temp, 0, BlockSizeByte - FeedBackByte);
201                                         Buffer.BlockCopy (input, x, temp, BlockSizeByte - FeedBackByte, FeedBackByte);
202                                         for (int i = 0; i < FeedBackByte; i++)
203                                                 output[i + x] = (byte)(temp2[i] ^ input[i + x]);
204                                 }
205                         }
206                 }
207
208                 // Output-FeedBack (OFB)
209                 protected virtual void OFB (byte[] input, byte[] output) 
210                 {
211                         throw new CryptographicException ("OFB isn't supported by the framework");
212                 }
213
214                 // Cipher Text Stealing (CTS)
215                 protected virtual void CTS (byte[] input, byte[] output) 
216                 {
217                         throw new CryptographicException ("CTS  isn't supported by the framework");
218                 }
219
220                 private void CheckInput (byte[] inputBuffer, int inputOffset, int inputCount)
221                 {
222                         if (inputBuffer == null)
223                                 throw new ArgumentNullException ("inputBuffer");
224                         if (inputOffset < 0)
225                                 throw new ArgumentOutOfRangeException ("inputOffset", "< 0");
226                         if (inputCount < 0)
227                                 throw new ArgumentOutOfRangeException ("inputCount", "< 0");
228                         // ordered to avoid possible integer overflow
229                         if (inputOffset > inputBuffer.Length - inputCount)
230                                 throw new ArgumentException ("inputBuffer", Locale.GetText ("Overflow"));
231                 }
232
233                 // this method may get called MANY times so this is the one to optimize
234                 public virtual int TransformBlock (byte[] inputBuffer, int inputOffset, int inputCount, byte[] outputBuffer, int outputOffset) 
235                 {
236                         if (m_disposed)
237                                 throw new ObjectDisposedException ("Object is disposed");
238                         CheckInput (inputBuffer, inputOffset, inputCount);
239                         // check output parameters
240                         if (outputBuffer == null)
241                                 throw new ArgumentNullException ("outputBuffer");
242                         if (outputOffset < 0)
243                                 throw new ArgumentOutOfRangeException ("outputOffset", "< 0");
244                         // ordered to avoid possible integer overflow
245                         if (outputOffset > outputBuffer.Length - inputCount)
246                                 throw new ArgumentException ("outputBuffer", Locale.GetText ("Overflow"));
247
248                         return InternalTransformBlock (inputBuffer, inputOffset, inputCount, outputBuffer, outputOffset);
249                 }
250
251                 private bool KeepLastBlock {
252                         get {
253                                 return ((!encrypt) && (algo.Mode != CipherMode.ECB) && (algo.Padding != PaddingMode.None));
254                         }
255                 }
256
257                 private int InternalTransformBlock (byte[] inputBuffer, int inputOffset, int inputCount, byte[] outputBuffer, int outputOffset) 
258                 {
259                         int offs = inputOffset;
260                         int full;
261
262                         // this way we don't do a modulo every time we're called
263                         // and we may save a division
264                         if (inputCount != BlockSizeByte) {
265                                 if ((inputCount % BlockSizeByte) != 0)
266                                         throw new CryptographicException ("Invalid input block size.");
267
268                                 full = inputCount / BlockSizeByte;
269                         }
270                         else
271                                 full = 1;
272
273                         if (KeepLastBlock)
274                                 full--;
275
276                         int total = 0;
277
278                         if (lastBlock) {
279                                 Transform (workBuff, workout);
280                                 Buffer.BlockCopy (workout, 0, outputBuffer, outputOffset, BlockSizeByte);
281                                 outputOffset += BlockSizeByte;
282                                 total += BlockSizeByte;
283                                 lastBlock = false;
284                         }
285
286                         for (int i = 0; i < full; i++) {
287                                 Buffer.BlockCopy (inputBuffer, offs, workBuff, 0, BlockSizeByte);
288                                 Transform (workBuff, workout);
289                                 Buffer.BlockCopy (workout, 0, outputBuffer, outputOffset, BlockSizeByte);
290                                 offs += BlockSizeByte;
291                                 outputOffset += BlockSizeByte;
292                                 total += BlockSizeByte;
293                         }
294
295                         if (KeepLastBlock) {
296                                 Buffer.BlockCopy (inputBuffer, offs, workBuff, 0, BlockSizeByte);
297                                 lastBlock = true;
298                         }
299
300                         return total;
301                 }
302
303 #if NET_2_0
304                 RandomNumberGenerator _rng;
305
306                 private void Random (byte[] buffer, int start, int length)
307                 {
308                         if (_rng == null) {
309                                 _rng = RandomNumberGenerator.Create ();
310                         }
311                         byte[] random = new byte [length];
312                         _rng.GetBytes (random);
313                         Buffer.BlockCopy (random, 0, buffer, start, length);
314                 }
315
316                 private void ThrowBadPaddingException (PaddingMode padding, int length, int position)
317                 {
318                         string msg = String.Format (Locale.GetText ("Bad {0} padding."), padding);
319                         if (length >= 0)
320                                 msg += String.Format (Locale.GetText (" Invalid length {0}."), length);
321                         if (position >= 0)
322                                 msg += String.Format (Locale.GetText (" Error found at position {0}."), position);
323                         throw new CryptographicException (msg);
324                 }
325 #endif
326
327                 private byte[] FinalEncrypt (byte[] inputBuffer, int inputOffset, int inputCount) 
328                 {
329                         // are there still full block to process ?
330                         int full = (inputCount / BlockSizeByte) * BlockSizeByte;
331                         int rem = inputCount - full;
332                         int total = full;
333
334                         switch (algo.Padding) {
335 #if NET_2_0
336                         case PaddingMode.ANSIX923:
337                         case PaddingMode.ISO10126:
338 #endif
339                         case PaddingMode.PKCS7:
340                                 // we need to add an extra block for padding
341                                 total += BlockSizeByte;
342                                 break;
343                         default:
344                                 if (inputCount == 0)
345                                         return new byte [0];
346                                 if (rem != 0) {
347                                         if (algo.Padding == PaddingMode.None)
348                                                 throw new CryptographicException ("invalid block length");
349                                         // zero padding the input (by adding a block for the partial data)
350                                         byte[] paddedInput = new byte [full + BlockSizeByte];
351                                         Buffer.BlockCopy (inputBuffer, inputOffset, paddedInput, 0, inputCount);
352                                         inputBuffer = paddedInput;
353                                         inputOffset = 0;
354                                         inputCount = paddedInput.Length;
355                                         total = inputCount;
356                                 }
357                                 break;
358                         }
359
360                         byte[] res = new byte [total];
361                         int outputOffset = 0;
362
363                         // process all blocks except the last (final) block
364                         while (total > BlockSizeByte) {
365                                 InternalTransformBlock (inputBuffer, inputOffset, BlockSizeByte, res, outputOffset);
366                                 inputOffset += BlockSizeByte;
367                                 outputOffset += BlockSizeByte;
368                                 total -= BlockSizeByte;
369                         }
370
371                         // now we only have a single last block to encrypt
372                         byte padding = (byte) (BlockSizeByte - rem);
373                         switch (algo.Padding) {
374 #if NET_2_0
375                         case PaddingMode.ANSIX923:
376                                 // XX 00 00 00 00 00 00 07 (zero + padding length)
377                                 res [res.Length - 1] = padding;
378                                 Buffer.BlockCopy (inputBuffer, inputOffset, res, full, rem);
379                                 // the last padded block will be transformed in-place
380                                 InternalTransformBlock (res, full, BlockSizeByte, res, full);
381                                 break;
382                         case PaddingMode.ISO10126:
383                                 // XX 3F 52 2A 81 AB F7 07 (random + padding length)
384                                 Random (res, res.Length - padding, padding - 1);
385                                 res [res.Length - 1] = padding;
386                                 Buffer.BlockCopy (inputBuffer, inputOffset, res, full, rem);
387                                 // the last padded block will be transformed in-place
388                                 InternalTransformBlock (res, full, BlockSizeByte, res, full);
389                                 break;
390 #endif
391                         case PaddingMode.PKCS7:
392                                 // XX 07 07 07 07 07 07 07 (padding length)
393                                 for (int i = res.Length; --i >= (res.Length - padding);) 
394                                         res [i] = padding;
395                                 Buffer.BlockCopy (inputBuffer, inputOffset, res, full, rem);
396                                 // the last padded block will be transformed in-place
397                                 InternalTransformBlock (res, full, BlockSizeByte, res, full);
398                                 break;
399                         default:
400                                 InternalTransformBlock (inputBuffer, inputOffset, BlockSizeByte, res, outputOffset);
401                                 break;
402                         }
403                         return res;
404                 }
405
406                 private byte[] FinalDecrypt (byte[] inputBuffer, int inputOffset, int inputCount) 
407                 {
408                         if ((inputCount % BlockSizeByte) > 0)
409                                 throw new CryptographicException ("Invalid input block size.");
410
411                         int total = inputCount;
412                         if (lastBlock)
413                                 total += BlockSizeByte;
414
415                         byte[] res = new byte [total];
416                         int outputOffset = 0;
417
418                         while (inputCount > 0) {
419                                 int len = InternalTransformBlock (inputBuffer, inputOffset, BlockSizeByte, res, outputOffset);
420                                 inputOffset += BlockSizeByte;
421                                 outputOffset += len;
422                                 inputCount -= BlockSizeByte;
423                         }
424
425                         if (lastBlock) {
426                                 Transform (workBuff, workout);
427                                 Buffer.BlockCopy (workout, 0, res, outputOffset, BlockSizeByte);
428                                 outputOffset += BlockSizeByte;
429                                 lastBlock = false;
430                         }
431
432                         // total may be 0 (e.g. PaddingMode.None)
433                         byte padding = ((total > 0) ? res [total - 1] : (byte) 0);
434                         switch (algo.Padding) {
435 #if NET_2_0
436                         case PaddingMode.ANSIX923:
437                                 if ((padding == 0) || (padding > BlockSizeByte))
438                                         ThrowBadPaddingException (algo.Padding, padding, -1);
439                                 for (int i=padding; i > 0; i--) {
440                                         if (res [total - 1 - i] != 0x00)
441                                                 ThrowBadPaddingException (algo.Padding, -1, i);
442                                 }
443                                 total -= padding;
444                                 break;
445                         case PaddingMode.ISO10126:
446                                 if ((padding == 0) || (padding > BlockSizeByte))
447                                         ThrowBadPaddingException (algo.Padding, padding, -1);
448                                 total -= padding;
449                                 break;
450                         case PaddingMode.PKCS7:
451                                 if ((padding == 0) || (padding > BlockSizeByte))
452                                         ThrowBadPaddingException (algo.Padding, padding, -1);
453                                 for (int i=padding - 1; i > 0; i--) {
454                                         if (res [total - 1 - i] != padding)
455                                                 ThrowBadPaddingException (algo.Padding, -1, i);
456                                 }
457                                 total -= padding;
458                                 break;
459 #else
460                         case PaddingMode.PKCS7:
461                                 total -= padding;
462                                 break;
463 #endif
464                         case PaddingMode.None:  // nothing to do - it's a multiple of block size
465                         case PaddingMode.Zeros: // nothing to do - user must unpad himself
466                                 break;
467                         }
468
469                         // return output without padding
470                         if (total > 0) {
471                                 byte[] data = new byte [total];
472                                 Buffer.BlockCopy (res, 0, data, 0, total);
473                                 // zeroize decrypted data (copy with padding)
474                                 Array.Clear (res, 0, res.Length);
475                                 return data;
476                         }
477                         else
478                                 return new byte [0];
479                 }
480
481                 public virtual byte[] TransformFinalBlock (byte[] inputBuffer, int inputOffset, int inputCount) 
482                 {
483                         if (m_disposed)
484                                 throw new ObjectDisposedException ("Object is disposed");
485                         CheckInput (inputBuffer, inputOffset, inputCount);
486
487                         if (encrypt)
488                                 return FinalEncrypt (inputBuffer, inputOffset, inputCount);
489                         else
490                                 return FinalDecrypt (inputBuffer, inputOffset, inputCount);
491                 }
492         }
493 }