Fix problems with overlong directory names: phase #1
[mono.git] / mcs / class / corlib / System.Security.Cryptography / MaskGenerationMethod.cs
index 44e21e33c582ef80e5142f46f4ad2156bc303e1c..97b43e7872f3184cdf00cb7e9c9fc56644347011 100644 (file)
@@ -5,11 +5,7 @@
 //     Sebastien Pouliot (sebastien@ximian.com)
 //
 // (C) 2002 Motus Technologies Inc. (http://www.motus.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.Runtime.InteropServices;
+
 namespace System.Security.Cryptography {
 
+#if NET_2_0
+       [ComVisible (true)]
+#endif
        public abstract class MaskGenerationMethod {
 
                protected MaskGenerationMethod () 
                {
                }
 
+#if NET_2_0
+               [ComVisible (true)]
+#endif
                public abstract byte[] GenerateMask (byte[] rgbSeed, int cbReturn);
        }
 }