merging the Mainsoft branch to the trunk
[mono.git] / mcs / class / corlib / Test / System.Security.Cryptography / SymmetricAlgorithm2Test.cs
1 //
2 // SymmetricAlgorithm2Test.cs -
3 //      Non generated NUnit Test Cases for SymmetricAlgorithm
4 //
5 // Author:
6 //      Sebastien Pouliot  <spouliot@ximian.com>
7 //
8 // Copyright (C) 2004-2005 Novell, Inc (http://www.novell.com)
9 //
10 // Permission is hereby granted, free of charge, to any person obtaining
11 // a copy of this software and associated documentation files (the
12 // "Software"), to deal in the Software without restriction, including
13 // without limitation the rights to use, copy, modify, merge, publish,
14 // distribute, sublicense, and/or sell copies of the Software, and to
15 // permit persons to whom the Software is furnished to do so, subject to
16 // the following conditions:
17 // 
18 // The above copyright notice and this permission notice shall be
19 // included in all copies or substantial portions of the Software.
20 // 
21 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
25 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 //
29
30 using NUnit.Framework;
31 using System;
32 using System.IO;
33 using System.Security.Cryptography;
34 using System.Text;
35
36 namespace MonoTests.System.Security.Cryptography {
37
38         // SymmetricAlgorithm is a abstract class - so most of it's functionality wont
39         // be tested here (but will be in its descendants).
40
41         [TestFixture]
42         public class SymmetricAlgorithm2Test : Assertion {
43
44                 public void AssertEquals (string msg, byte[] array1, byte[] array2) 
45                 {
46                         AllTests.AssertEquals (msg, array1, array2);
47                 }
48
49                 [Test]
50                 public void KeySize_SameSize () 
51                 {
52                         using (SymmetricAlgorithm algo = SymmetricAlgorithm.Create ()) {
53                                 // get a copy of the key
54                                 byte[] key = algo.Key;
55                                 int ks = algo.KeySize;
56                                 // set the key size
57                                 algo.KeySize = ks;
58                                 // did it change the key ? Yes!
59                                 Assert ("Key", BitConverter.ToString (key) != BitConverter.ToString (algo.Key));
60                         }
61                 }
62
63                 [Test]
64                 [ExpectedException (typeof (CryptographicException))]
65                 public void InvalidBlockSize () 
66                 {
67                         SymmetricAlgorithm algo = SymmetricAlgorithm.Create ();
68                         algo.BlockSize = 255;
69                 }
70
71                 [Test]
72                 [ExpectedException (typeof (CryptographicException))]
73                 public void InvalidFeedbackSize () 
74                 {
75                         SymmetricAlgorithm algo = SymmetricAlgorithm.Create ();
76                         algo.FeedbackSize = algo.BlockSize + 1;
77                 }
78
79                 [Test]
80                 [ExpectedException (typeof (ArgumentNullException))]
81                 public void IV_Null () 
82                 {
83                         SymmetricAlgorithm algo = SymmetricAlgorithm.Create ();
84                         algo.IV = null;
85                 }
86
87                 [Test]
88 #if NET_2_0
89                 [ExpectedException (typeof (CryptographicException))]
90 #endif
91                 public void IV_None () 
92                 {
93                         SymmetricAlgorithm algo = SymmetricAlgorithm.Create ();
94                         algo.IV = new byte [0]; // e.g. stream ciphers
95                 }
96
97                 [Test]
98                 [ExpectedException (typeof (CryptographicException))]
99                 public void IV_TooBig () 
100                 {
101                         SymmetricAlgorithm algo = SymmetricAlgorithm.Create ();
102                         algo.IV = new byte [algo.BlockSize + 1];
103                 }
104
105                 [Test]
106                 [ExpectedException (typeof (ArgumentNullException))]
107                 public void Key_Null () 
108                 {
109                         SymmetricAlgorithm algo = SymmetricAlgorithm.Create ();
110                         algo.Key = null;
111                 }
112
113                 [Test]
114                 [ExpectedException (typeof (CryptographicException))]
115                 public void Key_WrongSize () 
116                 {
117                         SymmetricAlgorithm algo = SymmetricAlgorithm.Create ();
118                         algo.Key = new byte [255];
119                 }
120
121                 [Test]
122                 [ExpectedException (typeof (CryptographicException))]
123                 public void KeySize_WrongSize () 
124                 {
125                         SymmetricAlgorithm algo = SymmetricAlgorithm.Create ();
126                         int n = 0;
127                         while (algo.ValidKeySize (++n));
128                         algo.KeySize = n;
129                 }
130
131                 [Test]
132                 [ExpectedException (typeof (CryptographicException))]
133                 public void InvalidCipherMode () 
134                 {
135                         SymmetricAlgorithm algo = SymmetricAlgorithm.Create ();
136                         algo.Mode = (CipherMode) 255;
137                 }
138
139                 [Test]
140                 [ExpectedException (typeof (CryptographicException))]
141                 public void InvalidPaddingMode () 
142                 {
143                         SymmetricAlgorithm algo = SymmetricAlgorithm.Create ();
144                         algo.Padding = (PaddingMode) 255;
145                 }
146
147                 [Test]
148 #if NET_2_0
149                 [ExpectedException (typeof (CryptographicException))]
150 #endif
151                 public void FeedbackZero ()
152                 {
153                         // thanks to Yakk for the sample
154                         DES des = new DESCryptoServiceProvider();
155                         des.FeedbackSize = 0;
156                         des.Padding = PaddingMode.None;
157                         des.Mode = CipherMode.ECB;
158                         des.Key = new byte [8] { 8, 7, 6, 5, 4, 3, 2, 1 };
159
160                         ICryptoTransform enc = des.CreateEncryptor (); 
161                         byte[] response = new byte [16];
162                         byte[] challenge = new byte [16] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 };
163
164                         enc.TransformBlock (challenge, 0, challenge.Length, response, 0);
165                         AssertEquals ("7A-64-CD-1B-4F-EE-B5-92-54-90-53-E9-83-71-A6-0C", BitConverter.ToString (response));
166                 }
167         }
168 }