New tests.
[mono.git] / mcs / class / corlib / System.Security.Cryptography / Rijndael.cs
index 0cd8506b6ab7fa03c0bdbc7e3b970caa9c151841..a1343db1b853fd960c93c0fa61b8840c34cd0cb6 100644 (file)
@@ -5,10 +5,31 @@
 //          Andrew Birkett (andy@nobugs.org)\r
 //\r
 // (C) 2002\r
-// (C) 2004 Novell (http://www.novell.com)
-//\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.
+//
+
+#if !MOONLIGHT
 \r
-using System;\r
+using System.Runtime.InteropServices;
 \r
 namespace System.Security.Cryptography {\r
 
@@ -16,6 +37,7 @@ namespace System.Security.Cryptography {
        // a.   FIPS PUB 197: Advanced Encryption Standard
        //      http://csrc.nist.gov/publications/fips/fips197/fips-197.pdf
 \r
+       [ComVisible (true)]
        public abstract class Rijndael : SymmetricAlgorithm {\r
 \r
                public static new Rijndael Create () \r
@@ -27,8 +49,8 @@ namespace System.Security.Cryptography {
                {\r
                        return (Rijndael) CryptoConfig.CreateFromName (algName);\r
                }\r
-               \r
-               public Rijndael () \r
+
+               protected Rijndael ()
                {\r
                        KeySizeValue = 256;\r
                        BlockSizeValue = 128;\r
@@ -42,3 +64,5 @@ namespace System.Security.Cryptography {
                }\r
        }\r
 }\r
+#endif
+