2007-03-22 Sebastien Pouliot <sebastien@ximian.com>
[mono.git] / mcs / class / corlib / Test / System.Security.Cryptography / CryptoConfigTest.cs
1 //
2 // CryptoConfigTest.cs - NUnit Test Cases for CryptoConfig
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-2007 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.Security.Cryptography;
33
34 namespace MonoTests.System.Security.Cryptography {
35
36 [TestFixture]
37 public class CryptoConfigTest {
38
39         void CreateFromName (string name, string objectname)
40         {
41                 object o = CryptoConfig.CreateFromName (name);
42                 if (objectname == null)
43                         Assert.IsNull (o, name);
44                 else
45                         Assert.AreEqual (objectname, o.ToString (), name);
46         }
47
48         [Test]
49         [ExpectedException (typeof (ArgumentNullException))]
50         public void CreateFromNameNull () 
51         {
52                 object o = CryptoConfig.CreateFromName (null);
53         }
54
55         // validate that CryptoConfig create the exact same implementation between mono and MS
56         [Test]
57         public void CreateFromName () 
58         {
59                 CreateFromName ("SHA", "System.Security.Cryptography.SHA1CryptoServiceProvider");
60                 // FIXME: We need to support the machine.config file to get exact same results
61                 // with the MS .NET Framework
62                 CreateFromName ("SHA1", "System.Security.Cryptography.SHA1CryptoServiceProvider");
63                 CreateFromName( "System.Security.Cryptography.SHA1", "System.Security.Cryptography.SHA1CryptoServiceProvider");
64                 // after installing the WSDK - changes to the machine.config file (not documented)
65 //              CreateFromName ("SHA1", "System.Security.Cryptography.SHA1Managed");
66 //              CreateFromName ("System.Security.Cryptography.SHA1", "System.Security.Cryptography.SHA1Managed");
67                 CreateFromName ("System.Security.Cryptography.HashAlgorithm", "System.Security.Cryptography.SHA1CryptoServiceProvider");
68                 CreateFromName ("System.Security.Cryptography.SHA1CryptoServiceProvider", "System.Security.Cryptography.SHA1CryptoServiceProvider");
69                 CreateFromName ("MD5", "System.Security.Cryptography.MD5CryptoServiceProvider");  
70                 CreateFromName ("System.Security.Cryptography.MD5", "System.Security.Cryptography.MD5CryptoServiceProvider");  
71                 CreateFromName ("System.Security.Cryptography.MD5CryptoServiceProvider", "System.Security.Cryptography.MD5CryptoServiceProvider");
72                 CreateFromName ("SHA256", "System.Security.Cryptography.SHA256Managed");  
73                 CreateFromName ("SHA-256", "System.Security.Cryptography.SHA256Managed");  
74                 CreateFromName ("System.Security.Cryptography.SHA256", "System.Security.Cryptography.SHA256Managed");  
75                 CreateFromName ("SHA384", "System.Security.Cryptography.SHA384Managed");  
76                 CreateFromName ("SHA-384", "System.Security.Cryptography.SHA384Managed");  
77                 CreateFromName ("System.Security.Cryptography.SHA384", "System.Security.Cryptography.SHA384Managed");  
78                 CreateFromName ("SHA512", "System.Security.Cryptography.SHA512Managed");  
79                 CreateFromName ("SHA-512", "System.Security.Cryptography.SHA512Managed");  
80                 CreateFromName ("System.Security.Cryptography.SHA512", "System.Security.Cryptography.SHA512Managed");  
81                 CreateFromName ("RSA", "System.Security.Cryptography.RSACryptoServiceProvider");  
82                 CreateFromName ("System.Security.Cryptography.RSA", "System.Security.Cryptography.RSACryptoServiceProvider");  
83                 CreateFromName ("System.Security.Cryptography.AsymmetricAlgorithm", "System.Security.Cryptography.RSACryptoServiceProvider");  
84                 CreateFromName ("DSA", "System.Security.Cryptography.DSACryptoServiceProvider");  
85                 CreateFromName ("System.Security.Cryptography.DSA", "System.Security.Cryptography.DSACryptoServiceProvider");  
86                 CreateFromName ("DES", "System.Security.Cryptography.DESCryptoServiceProvider");  
87                 CreateFromName ("System.Security.Cryptography.DES", "System.Security.Cryptography.DESCryptoServiceProvider");  
88                 CreateFromName ("3DES", "System.Security.Cryptography.TripleDESCryptoServiceProvider");  
89                 CreateFromName ("TripleDES", "System.Security.Cryptography.TripleDESCryptoServiceProvider");  
90                 CreateFromName ("Triple DES", "System.Security.Cryptography.TripleDESCryptoServiceProvider");  
91                 CreateFromName ("System.Security.Cryptography.TripleDES", "System.Security.Cryptography.TripleDESCryptoServiceProvider");  
92                 // LAMESPEC SymmetricAlgorithm documented as TripleDESCryptoServiceProvider
93                 CreateFromName ("System.Security.Cryptography.SymmetricAlgorithm", "System.Security.Cryptography.RijndaelManaged");  
94                 CreateFromName ("RC2", "System.Security.Cryptography.RC2CryptoServiceProvider");  
95                 CreateFromName ("System.Security.Cryptography.RC2", "System.Security.Cryptography.RC2CryptoServiceProvider");  
96                 CreateFromName ("Rijndael", "System.Security.Cryptography.RijndaelManaged");  
97                 CreateFromName ("System.Security.Cryptography.Rijndael", "System.Security.Cryptography.RijndaelManaged");
98                 // LAMESPEC Undocumented Names in CryptoConfig
99                 CreateFromName ("RandomNumberGenerator", "System.Security.Cryptography.RNGCryptoServiceProvider");
100                 CreateFromName ("System.Security.Cryptography.RandomNumberGenerator", "System.Security.Cryptography.RNGCryptoServiceProvider");
101                 CreateFromName ("System.Security.Cryptography.KeyedHashAlgorithm", "System.Security.Cryptography.HMACSHA1");
102                 CreateFromName ("HMACSHA1", "System.Security.Cryptography.HMACSHA1");
103                 CreateFromName ("System.Security.Cryptography.HMACSHA1", "System.Security.Cryptography.HMACSHA1");
104                 CreateFromName ("MACTripleDES", "System.Security.Cryptography.MACTripleDES");
105                 CreateFromName ("System.Security.Cryptography.MACTripleDES", "System.Security.Cryptography.MACTripleDES");
106 #if NET_2_0
107                 // new HMAC - new base class doesn't return anything with it's short name
108                 Assert.IsNull (CryptoConfig.CreateFromName ("HMAC"), "HMAC");
109                 CreateFromName ("System.Security.Cryptography.HMAC", "System.Security.Cryptography.HMACSHA1");
110                 CreateFromName ("HMACMD5", "System.Security.Cryptography.HMACMD5");
111                 CreateFromName ("System.Security.Cryptography.HMACMD5", "System.Security.Cryptography.HMACMD5");
112                 CreateFromName ("HMACRIPEMD160", "System.Security.Cryptography.HMACRIPEMD160");
113                 CreateFromName ("System.Security.Cryptography.HMACRIPEMD160", "System.Security.Cryptography.HMACRIPEMD160");
114                 CreateFromName ("HMACSHA256", "System.Security.Cryptography.HMACSHA256");
115                 CreateFromName ("System.Security.Cryptography.HMACSHA256", "System.Security.Cryptography.HMACSHA256");
116                 CreateFromName ("HMACSHA384", "System.Security.Cryptography.HMACSHA384");
117                 CreateFromName ("System.Security.Cryptography.HMACSHA384", "System.Security.Cryptography.HMACSHA384");
118                 CreateFromName ("HMACSHA512", "System.Security.Cryptography.HMACSHA512");
119                 CreateFromName ("System.Security.Cryptography.HMACSHA512", "System.Security.Cryptography.HMACSHA512");
120                 // new hash algorithm
121                 CreateFromName ("RIPEMD160", "System.Security.Cryptography.RIPEMD160Managed");
122                 CreateFromName ("RIPEMD-160", "System.Security.Cryptography.RIPEMD160Managed");
123                 CreateFromName ("System.Security.Cryptography.RIPEMD160", "System.Security.Cryptography.RIPEMD160Managed");
124                 // x.509 stuff
125 #if !TARGET_JVM //TargetJvmNotWorking - this algorithm should be added to System
126                 CreateFromName ("X509Chain", "System.Security.Cryptography.X509Certificates.X509Chain");
127 #endif
128 #endif
129                 // note: CryptoConfig can create any object !
130                 CreateFromName ("System.Security.Cryptography.CryptoConfig", "System.Security.Cryptography.CryptoConfig");
131                 CreateFromName ("System.IO.MemoryStream", "System.IO.MemoryStream");
132                 // non existing algo should return null (without exception)
133                 Assert.IsNull (CryptoConfig.CreateFromName ("NonExistingAlgorithm"), "NonExistingAlgorithm");
134         }
135
136         // additional names (URL) used for XMLDSIG (System.Security.Cryptography.Xml)
137         // URL taken from http://www.w3.org/TR/2002/REC-xmldsig-core-20020212/
138         [Test]
139         public void CreateFromURL () 
140         {
141                 // URL used in SignatureMethod element
142                 CreateFromName ("http://www.w3.org/2000/09/xmldsig#dsa-sha1", "System.Security.Cryptography.DSASignatureDescription");
143                 CreateFromName ("http://www.w3.org/2000/09/xmldsig#rsa-sha1", "System.Security.Cryptography.RSAPKCS1SHA1SignatureDescription");
144                 CreateFromName ("http://www.w3.org/2000/09/xmldsig#hmac-sha1", null);
145                 // URL used in DigestMethod element 
146                 CreateFromName ("http://www.w3.org/2000/09/xmldsig#sha1", "System.Security.Cryptography.SHA1CryptoServiceProvider");
147 #if !TARGET_JVM //TargetJvmNotWorking - algorithms from System.Security assembly
148                 // URL used in Canonicalization or Transform elements 
149                 CreateFromName ("http://www.w3.org/TR/2001/REC-xml-c14n-20010315", "System.Security.Cryptography.Xml.XmlDsigC14NTransform");
150                 CreateFromName ("http://www.w3.org/TR/2001/REC-xml-c14n-20010315#WithComments", "System.Security.Cryptography.Xml.XmlDsigC14NWithCommentsTransform");
151                 // URL used in Transform element 
152                 CreateFromName ("http://www.w3.org/2000/09/xmldsig#base64", "System.Security.Cryptography.Xml.XmlDsigBase64Transform");
153                 // after installing the WSDK - changes to the machine.config file (not documented)
154 //              CreateFromName ("http://www.w3.org/TR/1999/REC-xpath-19991116", "Microsoft.WSDK.Security.XmlDsigXPathTransform");
155                 CreateFromName ("http://www.w3.org/TR/1999/REC-xpath-19991116", "System.Security.Cryptography.Xml.XmlDsigXPathTransform");
156                 CreateFromName ("http://www.w3.org/TR/1999/REC-xslt-19991116", "System.Security.Cryptography.Xml.XmlDsigXsltTransform");
157                 CreateFromName ("http://www.w3.org/2000/09/xmldsig#enveloped-signature", "System.Security.Cryptography.Xml.XmlDsigEnvelopedSignatureTransform");
158                 // URL used in Reference element 
159                 CreateFromName ("http://www.w3.org/2000/09/xmldsig#Object", null);
160                 CreateFromName ("http://www.w3.org/2000/09/xmldsig#Manifest", null);
161                 CreateFromName ("http://www.w3.org/2000/09/xmldsig#SignatureProperties", null);
162                 // LAMESPEC: only documentated in ".NET Framework Security" book
163                 CreateFromName ("http://www.w3.org/2000/09/xmldsig# X509Data", "System.Security.Cryptography.Xml.KeyInfoX509Data");
164                 CreateFromName ("http://www.w3.org/2000/09/xmldsig# KeyName", "System.Security.Cryptography.Xml.KeyInfoName");
165                 CreateFromName ("http://www.w3.org/2000/09/xmldsig# KeyValue/DSAKeyValue", "System.Security.Cryptography.Xml.DSAKeyValue");
166                 CreateFromName ("http://www.w3.org/2000/09/xmldsig# KeyValue/RSAKeyValue", "System.Security.Cryptography.Xml.RSAKeyValue");
167                 CreateFromName ("http://www.w3.org/2000/09/xmldsig# RetrievalMethod", "System.Security.Cryptography.Xml.KeyInfoRetrievalMethod");
168 #endif
169         }
170
171         [Test]
172         public void CreateFromName_UpperCase () 
173         {
174                 CreateFromName ("SHA", "System.Security.Cryptography.SHA1CryptoServiceProvider");
175 #if NET_2_0
176                 CreateFromName ("SYSTEM.SECURITY.CRYPTOGRAPHY.TRIPLEDES", "System.Security.Cryptography.TripleDESCryptoServiceProvider");  
177                 CreateFromName ("HTTP://WWW.W3.ORG/2000/09/XMLDSIG#DSA-SHA1", "System.Security.Cryptography.DSASignatureDescription");
178 #else
179                 CreateFromName ("SYSTEM.SECURITY.CRYPTOGRAPHY.TRIPLEDES", null);  
180                 CreateFromName ("HTTP://WWW.W3.ORG/2000/09/XMLDSIG#DSA-SHA1", null);
181 #endif
182         }
183
184         [Test]
185         public void CreateFromName_LowerCase () 
186         {
187 #if NET_2_0
188                 CreateFromName ("sha", "System.Security.Cryptography.SHA1CryptoServiceProvider");
189                 CreateFromName ("system.security.cryptography.tripledes", "System.Security.Cryptography.TripleDESCryptoServiceProvider");  
190 #else
191                 CreateFromName ("sha", null);
192                 CreateFromName ("system.security.cryptography.tripledes", null);  
193 #endif
194                 CreateFromName ("http://www.w3.org/2000/09/xmldsig#dsa-sha1", "System.Security.Cryptography.DSASignatureDescription");
195         }
196
197         [Test]
198         public void CreateFromName_MixedCase () 
199         {
200 #if NET_2_0
201                 CreateFromName ("ShA", "System.Security.Cryptography.SHA1CryptoServiceProvider");
202                 CreateFromName ("SyStEm.SeCuRiTy.CrYpToGrApHy.TrIpLeDeS", "System.Security.Cryptography.TripleDESCryptoServiceProvider");  
203                 CreateFromName ("hTtP://wWw.W3.oRg/2000/09/xMlDsIg#dSa-sHa1", "System.Security.Cryptography.DSASignatureDescription");
204 #else
205                 CreateFromName ("ShA", null);
206                 CreateFromName ("SyStEm.SeCuRiTy.CrYpToGrApHy.TrIpLeDeS", null);  
207                 CreateFromName ("hTtP://wWw.W3.oRg/2000/09/xMlDsIg#dSa-sHa1", null);
208 #endif
209         }
210
211         // Tests created using "A Layer Man Guide to ASN.1" from RSA, page 19-20
212         // Need to find an OID ? goto http://www.alvestrand.no/~hta/objectid/top.html
213         static byte[] oidETSI = { 0x06, 0x03, 0x04, 0x00, 0x00 };
214         static byte[] oidSHA1 = { 0x06, 0x05, 0x2B, 0x0E, 0x03, 0x02, 0x1A };
215         static byte[] oidASN1CharacterModule = { 0x06, 0x04, 0x51, 0x00, 0x00, 0x00 };
216         static byte[] oidmd5withRSAEncryption = { 0x06, 0x09, 0x2A, 0x86, 0x48, 0x86, 0xF7, 0x0D, 0x01, 0x01, 0x04 };
217
218         [Test]
219 #if NET_2_0
220         [ExpectedException (typeof (ArgumentNullException))]
221 #else
222         [ExpectedException (typeof (NullReferenceException))]
223 #endif
224         public void EncodeOIDNull () 
225         {
226                 byte[] o = CryptoConfig.EncodeOID (null);
227         }
228
229         [Test]
230         public void EncodeOID () 
231         {
232                 // OID starts with 0, 1 or 2
233                 Assert.AreEqual (oidETSI, CryptoConfig.EncodeOID ("0.4.0.0"), "OID starting with 0.");
234                 Assert.AreEqual (oidSHA1, CryptoConfig.EncodeOID ("1.3.14.3.2.26"), "OID starting with 1.");
235                 Assert.AreEqual (oidASN1CharacterModule, CryptoConfig.EncodeOID ("2.1.0.0.0"), "OID starting with 2.");
236                 // OID numbers can span multiple bytes
237                 Assert.AreEqual (oidmd5withRSAEncryption, CryptoConfig.EncodeOID ("1.2.840.113549.1.1.4"), "OID with numbers spanning multiple bytes");
238         }
239
240         [Test]
241         [ExpectedException (typeof (CryptographicUnexpectedOperationException))]
242         // LAMESPEC: OID greater that 0x7F (127) bytes aren't supported by the MS Framework
243         public void EncodeOID_BiggerThan127bytes () 
244         {
245                 // "ms"-invalid OID - greater than 127 bytes (length encoding)
246                 // OID longer than 127 bytes (so length must be encoded on multiple bytes)
247                 string baseOID = "1.3.6.1.4.1.11071.0.";
248                 string lastPart = "1111111111"; // must fit in int32
249                 for (int i = 1; i < 30; i++) {
250                         baseOID += lastPart + ".";
251                 }
252                 baseOID += "0";
253                 byte[] tooLongOID = CryptoConfig.EncodeOID (baseOID);
254         }
255                 
256         [Test]
257         [ExpectedException (typeof (OverflowException))]
258         // LAMESPEC: OID with numbers > Int32 aren't supported by the MS BCL
259         public void EncodeOID_BiggerThanInt32 () 
260         {
261                 // "ms"-invalid OID - where a number of the OID > Int32
262                 byte[] tooLongOID = CryptoConfig.EncodeOID ("1.1.4294967295");
263         }
264
265         [Test]
266         public void EncodeOID_InvalidStart () 
267         {
268                 // invalid OID - must start with 0, 1 or 2
269                 // however it works with MS BCL
270                 byte[] oid3 = CryptoConfig.EncodeOID ("3.0");
271                 byte[] res3 = { 0x06, 0x01, 0x78 };
272                 Assert.AreEqual (res3, oid3, "OID: 3.0");
273         }
274
275         [Test]
276         [ExpectedException (typeof (CryptographicUnexpectedOperationException))]
277         public void EncodeOID_TooShort () 
278         {
279                 // invalid OID - must have at least 2 parts (according to X.208)
280                 byte[] tooShortOID = CryptoConfig.EncodeOID ("0");
281         }
282
283         [Test]
284         public void EncodeOID_InvalidSecondPart () 
285         {
286                 // invalid OID - second value < 40 for 0. and 1. (modulo 40)
287                 // however it works with MS BCL
288                 byte[] tooBigSecondPartOID = CryptoConfig.EncodeOID ("0.40");
289                 byte[] tooBigSecondPartRes = { 0x06, 0x01, 0x28 };
290                 Assert.AreEqual (tooBigSecondPartRes, tooBigSecondPartOID, "OID: 0.40");
291         }
292
293         [Test]
294         [ExpectedException (typeof (ArgumentNullException))]
295         public void MapNameToOIDNull () 
296         {
297                 CryptoConfig.MapNameToOID (null);
298         }
299
300         private void MapNameToOID (string name, string oid)
301         {
302                 Assert.AreEqual (oid, CryptoConfig.MapNameToOID (name), "oid(" + name + ")");
303         }
304
305         // LAMESPEC: doesn't support all names defined in CryptoConfig 
306         // non supported names (in MSFW) are commented or null-ed
307         // LAMESPEC: undocumented but full class name is supported
308         [Test]
309         public void MapNameToOID() 
310         {
311 //              MapNameToOID ("SHA", "1.3.14.3.2.26");
312                 MapNameToOID ("SHA1", "1.3.14.3.2.26");
313                 MapNameToOID ("System.Security.Cryptography.SHA1", "1.3.14.3.2.26");
314 //              MapNameToOID ("System.Security.Cryptography.HashAlgorithm", "1.3.14.3.2.26");
315                 MapNameToOID ("System.Security.Cryptography.SHA1CryptoServiceProvider", "1.3.14.3.2.26");
316                 MapNameToOID ("System.Security.Cryptography.SHA1Managed", "1.3.14.3.2.26");
317                 MapNameToOID ("MD5", "1.2.840.113549.2.5");
318                 MapNameToOID ("System.Security.Cryptography.MD5", "1.2.840.113549.2.5");
319                 MapNameToOID ("System.Security.Cryptography.MD5CryptoServiceProvider", "1.2.840.113549.2.5");
320 #if NET_2_0
321                 MapNameToOID ("SHA256", "2.16.840.1.101.3.4.2.1");
322                 MapNameToOID ("System.Security.Cryptography.SHA256", "2.16.840.1.101.3.4.2.1");
323                 MapNameToOID ("System.Security.Cryptography.SHA256Managed", "2.16.840.1.101.3.4.2.1");
324                 MapNameToOID ("SHA384", "2.16.840.1.101.3.4.2.2");
325                 MapNameToOID ("System.Security.Cryptography.SHA384", "2.16.840.1.101.3.4.2.2");
326                 MapNameToOID ("System.Security.Cryptography.SHA384Managed", "2.16.840.1.101.3.4.2.2");
327                 MapNameToOID ("SHA512", "2.16.840.1.101.3.4.2.3");
328                 MapNameToOID ("System.Security.Cryptography.SHA512", "2.16.840.1.101.3.4.2.3");
329                 MapNameToOID ("System.Security.Cryptography.SHA512Managed", "2.16.840.1.101.3.4.2.3");
330 #else
331                 MapNameToOID ("SHA256", "2.16.840.1.101.3.4.1");
332 //              MapNameToOID ("SHA-256", "2.16.840.1.101.3.4.1");
333                 MapNameToOID ("System.Security.Cryptography.SHA256", "2.16.840.1.101.3.4.1");
334                 MapNameToOID ("System.Security.Cryptography.SHA256Managed", "2.16.840.1.101.3.4.1");
335                 MapNameToOID ("SHA384", "2.16.840.1.101.3.4.2");
336 //              MapNameToOID ("SHA-384", "2.16.840.1.101.3.4.2");
337                 MapNameToOID ("System.Security.Cryptography.SHA384", "2.16.840.1.101.3.4.2");
338                 MapNameToOID ("System.Security.Cryptography.SHA384Managed", "2.16.840.1.101.3.4.2");
339                 MapNameToOID ("SHA512", "2.16.840.1.101.3.4.3");
340 //              MapNameToOID ("SHA-512", "2.16.840.1.101.3.4.3");
341                 MapNameToOID ("System.Security.Cryptography.SHA512", "2.16.840.1.101.3.4.3");
342                 MapNameToOID ("System.Security.Cryptography.SHA512Managed", "2.16.840.1.101.3.4.3");
343 #endif
344                 // LAMESPEC: only documentated in ".NET Framework Security" book
345                 MapNameToOID ("TripleDESKeyWrap", "1.2.840.113549.1.9.16.3.6");
346 #if NET_2_0
347                 // new OID defined in Fx 2.0
348                 MapNameToOID ("DES", "1.3.14.3.2.7");
349                 MapNameToOID ("TripleDES", "1.2.840.113549.3.7");
350                 MapNameToOID ("RC2", "1.2.840.113549.3.2");
351 #else
352                 // no OID defined before Fx 2.0
353                 MapNameToOID ("DES", null);
354                 MapNameToOID ("TripleDES", null);
355                 MapNameToOID ("RC2", null);
356 #endif
357                 MapNameToOID ("RSA", null);
358                 MapNameToOID ("DSA", null);
359                 MapNameToOID ("3DES", null);
360                 // no OID defined ?
361                 MapNameToOID ("System.Security.Cryptography.RSA", null);
362                 MapNameToOID ("System.Security.Cryptography.AsymmetricAlgorithm", null);
363                 MapNameToOID ("System.Security.Cryptography.DSA", null);
364                 MapNameToOID ("System.Security.Cryptography.DES", null);
365                 MapNameToOID ("Triple DES", null);
366                 MapNameToOID ("System.Security.Cryptography.TripleDES", null);
367                 MapNameToOID ("System.Security.Cryptography.RC2", null);
368                 MapNameToOID ("Rijndael", null);
369                 MapNameToOID ("System.Security.Cryptography.Rijndael", null);
370                 MapNameToOID ("System.Security.Cryptography.SymmetricAlgorithm", null);
371                 // LAMESPEC Undocumented Names in CryptoConfig
372                 MapNameToOID ("RandomNumberGenerator", null);
373                 MapNameToOID ("System.Security.Cryptography.RandomNumberGenerator", null);
374                 MapNameToOID ("System.Security.Cryptography.KeyedHashAlgorithm", null);
375 #if NET_2_0
376                 MapNameToOID ("HMAC", null);
377                 MapNameToOID ("System.Security.Cryptography.HMAC", null);
378                 MapNameToOID ("HMACMD5", null);
379                 MapNameToOID ("System.Security.Cryptography.HMACMD5", null);
380                 MapNameToOID ("HMACRIPEMD160", null);
381                 MapNameToOID ("System.Security.Cryptography.HMACRIPEMD160", null);
382                 MapNameToOID ("HMACSHA256", null);
383                 MapNameToOID ("System.Security.Cryptography.HMACSHA256", null);
384                 MapNameToOID ("HMACSHA384", null);
385                 MapNameToOID ("System.Security.Cryptography.HMACSHA384", null);
386                 MapNameToOID ("HMACSHA512", null);
387                 MapNameToOID ("System.Security.Cryptography.HMACSHA512", null);
388 #endif
389                 MapNameToOID ("HMACSHA1", null);
390                 MapNameToOID ("System.Security.Cryptography.HMACSHA1", null);
391                 MapNameToOID ("MACTripleDES", null);
392                 MapNameToOID ("System.Security.Cryptography.MACTripleDES", null);
393                 // non existing algo should return null (without exception)
394                 MapNameToOID ("NonExistingAlgorithm", null);
395         }
396
397         [Test]
398         public void MapNameToOID_UpperCase () 
399         {
400                 MapNameToOID ("SHA1", "1.3.14.3.2.26");
401 #if NET_2_0
402                 MapNameToOID ("SYSTEM.SECURITY.CRYPTOGRAPHY.MD5CRYPTOSERVICEPROVIDER", "1.2.840.113549.2.5");
403 #else
404                 MapNameToOID ("SYSTEM.SECURITY.CRYPTOGRAPHY.MD5CRYPTOSERVICEPROVIDER", null);
405 #endif
406         }
407
408         [Test]
409         public void MapNameToOID_LowerCase () 
410         {
411 #if NET_2_0
412                 MapNameToOID ("sha1", "1.3.14.3.2.26");
413                 MapNameToOID ("system.security.cryptography.md5cryptoserviceprovider", "1.2.840.113549.2.5");
414 #else
415                 MapNameToOID ("sha1", null);
416                 MapNameToOID ("system.security.cryptography.md5cryptoserviceprovider", null);
417 #endif
418         }
419
420         [Test]
421         public void MapNameToOID_MixedCase () 
422         {
423 #if NET_2_0
424                 MapNameToOID ("sHa1", "1.3.14.3.2.26");
425                 MapNameToOID ("SySteM.SeCuRiTy.CrYpToGrApHy.Md5cRyPtOsErViCePrOvIdEr", "1.2.840.113549.2.5");
426 #else
427                 MapNameToOID ("sHa1", null);
428                 MapNameToOID ("SySteM.SeCuRiTy.CrYpToGrApHy.Md5cRyPtOsErViCePrOvIdEr", null);
429 #endif
430         }
431
432         [Test]
433         public void CCToString () 
434         {
435                 // under normal circumstance there are no need to create a CryptoConfig object
436                 // because all interesting stuff are in static methods
437                 CryptoConfig cc = new CryptoConfig ();
438                 Assert.AreEqual ("System.Security.Cryptography.CryptoConfig", cc.ToString ());
439         }
440 }
441
442 }