CryptoConfig.cs: Inverse name and oid when reading them from machine.config. Part...
[mono.git] / mcs / class / corlib / System.Security.Cryptography / Rijndael.cs
index 18c5e8498c91fa3b8abca9b0486652ee4358dbea..4104dfbd909d5afeb38bc4eadbe7c8b580f2615b 100644 (file)
@@ -2,24 +2,69 @@
 // System.Security.Cryptography.Rijndael.cs\r
 //\r
 // Authors: Dan Lewis (dihlewis@yahoo.co.uk)\r
+//          Andrew Birkett (andy@nobugs.org)\r
 //\r
 // (C) 2002\r
-//\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
-       [MonoTODO]\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
-               public static new Rijndael Create () { return null; }\r
-               public static new Rijndael Create (string alg) { return null; }\r
-               \r
-               public Rijndael () {\r
+\r
+               public static new Rijndael Create () \r
+               {\r
+                       return Create ("System.Security.Cryptography.Rijndael");\r
+               }\r
+\r
+               public static new Rijndael Create (string algName) \r
+               {\r
+                       return (Rijndael) CryptoConfig.CreateFromName (algName);\r
+               }\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
+\r
+                       LegalBlockSizesValue = new KeySizes [1];\r
+                       LegalBlockSizesValue [0] = new KeySizes (128, 256, 64);\r
                }\r
        }\r
 }\r