New test.
[mono.git] / mcs / class / corlib / Test / System.Security.Cryptography / AsymmetricAlgorithmTest.cs
index eed1fc5196c3215eb567caac24990d04375c1796..bbc31525078d279b9b9d8e3a597a3e68e017ee5b 100644 (file)
@@ -1,40 +1,40 @@
-//\r
-// TestSuite.System.Security.Cryptography.AsymmetricAlgorithmTest.cs\r
-//\r
-// Author:\r
-//      Thomas Neidhart (tome@sbox.tugraz.at)\r
-//\r
-\r
-\r
-using System;\r
-using System.Security.Cryptography;\r
-\r
-using NUnit.Framework;\r
-\r
-namespace MonoTests.System.Security.Cryptography {\r
-\r
-       public class AsymmetricAlgorithmTest : TestCase {\r
-               private AsymmetricAlgorithm _algo;\r
-               protected override void SetUp() {\r
-                       _algo = AsymmetricAlgorithm.Create();\r
-               }\r
-\r
-               private void SetDefaultData() {\r
-               }\r
-               \r
-               public void TestProperties() {\r
-                       Assert("Properties (1)", _algo != null);\r
-                       \r
-                       bool thrown = false;\r
-                       try {\r
-                               KeySizes[] keys = _algo.LegalKeySizes;\r
-                               foreach (KeySizes myKey in keys) {\r
-                                       for (int i=myKey.MinSize; i<=myKey.MaxSize; i+=myKey.SkipSize) {\r
-                                               _algo.KeySize = i;\r
-                                       }\r
-                               }\r
-                       } catch (CryptographicException) {thrown=true;}\r
-                       Assert("Properties (2)", !thrown);                      \r
-               }\r
-       }\r
-}\r
+//
+// TestSuite.System.Security.Cryptography.AsymmetricAlgorithmTest.cs
+//
+// Author:
+//      Thomas Neidhart (tome@sbox.tugraz.at)
+//
+
+
+using System;
+using System.Security.Cryptography;
+
+using NUnit.Framework;
+
+namespace MonoTests.System.Security.Cryptography {
+
+       public class AsymmetricAlgorithmTest : TestCase {
+               private AsymmetricAlgorithm _algo;
+               protected override void SetUp() {
+                       _algo = AsymmetricAlgorithm.Create();
+               }
+
+               private void SetDefaultData() {
+               }
+               
+               public void TestProperties() {
+                       Assert("Properties (1)", _algo != null);
+                       
+                       bool thrown = false;
+                       try {
+                               KeySizes[] keys = _algo.LegalKeySizes;
+                               foreach (KeySizes myKey in keys) {
+                                       for (int i=myKey.MinSize; i<=myKey.MaxSize; i+=myKey.SkipSize) {
+                                               _algo.KeySize = i;
+                                       }
+                               }
+                       } catch (CryptographicException) {thrown=true;}
+                       Assert("Properties (2)", !thrown);                      
+               }
+       }
+}