Switch to compiler-tester
[mono.git] / mcs / class / corlib / System.Security.Cryptography / FromBase64Transform.cs
index 9991fba2f467a9795d854f98257aff9a5dda5dbb..59b71d2587ef6d082269fcb316b108307559c9a9 100644 (file)
@@ -4,11 +4,7 @@
 // Author:
 //   Sergey Chaban (serge@wildwestsoftware.com)
 //
-// (C) 2004 Novell (http://www.novell.com)
-//
-
-//
-// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
+// Copyright (C) 2004-2005 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
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-using System;
 using System.Globalization;
+using System.Runtime.InteropServices;
 
 namespace System.Security.Cryptography {
 
        [Serializable]
+#if NET_2_0
+       [ComVisible (true)]
+#endif
        public enum FromBase64TransformMode : int {
                IgnoreWhiteSpaces,
                DoNotIgnoreWhiteSpaces
        }
 
+#if NET_2_0
+       [ComVisible (true)]
+#endif
        public class FromBase64Transform : ICryptoTransform {
 
                private FromBase64TransformMode mode;