New tests.
[mono.git] / mcs / class / corlib / System.Security.Cryptography / Rijndael.cs
index dabcda01e6f636555108220391439b10681bef4d..a1343db1b853fd960c93c0fa61b8840c34cd0cb6 100644 (file)
@@ -5,11 +5,7 @@
 //          Andrew Birkett (andy@nobugs.org)\r
 //\r
 // (C) 2002\r
-// (C) 2004 Novell (http://www.novell.com)
-//\r
-
-//
-// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
+// 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
 // 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
 
@@ -39,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
@@ -50,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
@@ -65,3 +64,5 @@ namespace System.Security.Cryptography {
                }\r
        }\r
 }\r
+#endif
+