* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / class / corlib / System.Security.Cryptography / CryptoAPITransform.cs
old mode 100755 (executable)
new mode 100644 (file)
index c81e735..716ced9
@@ -5,7 +5,7 @@
 //     Thomas Neidhart (tome@sbox.tugraz.at)
 //     Sebastien Pouliot (sebastien@ximian.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.Runtime.InteropServices;
+using System.Security.Permissions;
 
 namespace System.Security.Cryptography {
 
        // Note: This class isn't used by Mono as all algorithms are provided with
        // 100% managed implementations.
 
+#if NET_2_0
+       [ComVisible (true)]
+#endif
        public sealed class CryptoAPITransform : ICryptoTransform {
 
                private bool m_disposed;
@@ -63,6 +67,7 @@ namespace System.Security.Cryptography {
                }
 
                public IntPtr KeyHandle {
+                       [SecurityPermission (SecurityAction.Demand, UnmanagedCode = true)]
                        get { return IntPtr.Zero; }
                }
 
@@ -104,6 +109,7 @@ namespace System.Security.Cryptography {
                }
 
 #if NET_2_0
+               [ComVisible (false)]
                public void Reset ()
                {
                }