CryptoConfig.cs: Inverse name and oid when reading them from machine.config. Part...
[mono.git] / mcs / class / corlib / System.Security.Cryptography / Rijndael.cs
index dec4cafaf544aa00a9e83ce3af70728be67e2e56..4104dfbd909d5afeb38bc4eadbe7c8b580f2615b 100644 (file)
@@ -5,12 +5,39 @@
 //          Andrew Birkett (andy@nobugs.org)\r
 //\r
 // (C) 2002\r
-//\r
+// Copyright (C) 2004-2006 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
 \r
-using System;\r
+using System.Runtime.InteropServices;
 \r
 namespace System.Security.Cryptography {\r
-       \r
+
+       // References:
+       // a.   FIPS PUB 197: Advanced Encryption Standard
+       //      http://csrc.nist.gov/publications/fips/fips197/fips-197.pdf
+\r
+#if NET_2_0
+       [ComVisible (true)]
+#endif
        public abstract class Rijndael : SymmetricAlgorithm {\r
 \r
                public static new Rijndael Create () \r
@@ -22,18 +49,22 @@ namespace System.Security.Cryptography {
                {\r
                        return (Rijndael) CryptoConfig.CreateFromName (algName);\r
                }\r
-               \r
-               public Rijndael () \r
+
+#if NET_2_0
+               protected Rijndael ()
+#else\r
+               public Rijndael ()
+#endif\r
                {\r
                        KeySizeValue = 256;\r
                        BlockSizeValue = 128;\r
                        FeedbackSizeValue = 128;\r
        \r
-                       LegalKeySizesValue = new KeySizes[1];\r
-                       LegalKeySizesValue[0] = new KeySizes(128, 256, 64);\r
+                       LegalKeySizesValue = new KeySizes [1];\r
+                       LegalKeySizesValue [0] = new KeySizes (128, 256, 64);\r
 \r
-                       LegalBlockSizesValue = new KeySizes[1];\r
-                       LegalBlockSizesValue[0] = new KeySizes(128, 256, 64);\r
+                       LegalBlockSizesValue = new KeySizes [1];\r
+                       LegalBlockSizesValue [0] = new KeySizes (128, 256, 64);\r
                }\r
        }\r
 }\r