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