New tests.
[mono.git] / mcs / class / corlib / System.Security.Cryptography / TripleDES.cs
1 //
2 // TripleDES.cs: Handles TripleDES (abstract class)
3 //
4 // Author:
5 //      Sebastien Pouliot <sebastien@ximian.com>
6 //
7 // (C) 2002, 2003 Motus Technologies Inc. (http://www.motus.com)
8 // Copyright (C) 2004-2006 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 #if !NET_2_1 || MONOTOUCH
31
32 using System.Globalization;
33 using System.Runtime.InteropServices;
34 using System.Security.Cryptography;
35
36 namespace System.Security.Cryptography {
37
38 // References:
39 // a.   FIPS PUB 46-3: TripleDES
40 //      http://csrc.nist.gov/publications/fips/fips46-3/fips46-3.pdf
41 // b.   ANSI X9.52
42 //      not free :-(
43 //      http://webstore.ansi.org/ansidocstore/product.asp?sku=ANSI+X9%2E52%2D1998
44
45 [ComVisible (true)]
46 public abstract class TripleDES : SymmetricAlgorithm {
47
48         protected TripleDES ()
49         {
50                 // from SymmetricAlgorithm
51                 KeySizeValue = 192;
52                 BlockSizeValue = 64;
53                 FeedbackSizeValue = 8;
54
55                 LegalKeySizesValue = new KeySizes [1];
56                 LegalKeySizesValue [0] = new KeySizes (128, 192, 64);
57
58                 LegalBlockSizesValue = new KeySizes [1];
59                 LegalBlockSizesValue [0] = new KeySizes (64, 64, 0);
60         }
61
62         public override byte[] Key {
63                 get {
64                         if (KeyValue == null) {
65                                 // generate keys as long as we get weak keys
66                                 GenerateKey ();
67                                 while (IsWeakKey (KeyValue))
68                                         GenerateKey ();
69                         }
70                         return (byte[]) KeyValue.Clone ();
71                 }
72                 set { 
73                         if (value == null)
74                                 throw new ArgumentNullException ("Key");
75                         // this will check for both key size and weak keys
76                         if (IsWeakKey (value))
77                                 throw new CryptographicException (Locale.GetText ("Weak Key"));
78                         KeyValue = (byte[]) value.Clone (); 
79                 }
80         }
81
82         // Triple DES is DES in EDE = Encrypt - Decrypt - Encrypt
83         // with 2 keys (a,b)
84         //      EDE = Encrypt (a) - Decrypt (b) - Encrypt (a)
85         //      if a == b then TripleDES == DES(a) (hence weak key)
86         // with 3 keys (a,b,c)
87         //      EDE = Encrypt (a) - Decrypt (b) - Encrypt (c)
88         //      if ( a == b ) then TripleDES == DES(c) (hence weak key)
89         //      if ( b == c ) then TripleDES == DES(a) (hence weak key)
90         public static bool IsWeakKey (byte[] rgbKey)
91         {
92                 if (rgbKey == null)
93                         throw new CryptographicException (Locale.GetText ("Null Key"));
94                 // 128 bits (16 bytes) is 3 DES with 2 keys
95                 if (rgbKey.Length == 16) {
96                         // weak if first half == second half
97                         for (int i = 0; i < 8; i++)
98                                 if (rgbKey [i] != rgbKey [i+8])
99                                         return false;
100                 }
101                 // 192 bits (24 bytes) is 3 DES with 3 keys
102                 else if (rgbKey.Length == 24) {
103                         bool bFirstCase = true; 
104                         // weak if first third == second third
105                         for (int i = 0; i < 8; i++) {
106                                 if (rgbKey [i] != rgbKey [i+8]) {
107                                         bFirstCase = false;
108                                         break;
109                                 }
110                         }
111                         // weak if second third == third third 
112                         if (!bFirstCase) {
113                                 for (int i = 8; i < 16; i++)
114                                         if (rgbKey [i] != rgbKey [i+8])
115                                                 return false;
116                         }
117                 }
118                 else
119                         throw new CryptographicException (Locale.GetText ("Wrong Key Length"));
120
121                 return true;
122         }
123
124         public static new TripleDES Create ()
125         {
126                 return Create ("System.Security.Cryptography.TripleDES");
127         }
128
129         public static new TripleDES Create (string str)
130         {
131                 return (TripleDES) CryptoConfig.CreateFromName (str);
132         }
133 }
134
135 }
136
137 #endif
138