New test.
[mono.git] / mcs / class / corlib / System.Security.Cryptography / Rijndael.cs
index dabcda01e6f636555108220391439b10681bef4d..4104dfbd909d5afeb38bc4eadbe7c8b580f2615b 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
@@ -31,7 +27,7 @@
 // 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
 
@@ -39,6 +35,9 @@ namespace System.Security.Cryptography {
        // 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
@@ -50,8 +49,12 @@ 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