A little more work of CorCompare work:
[mono.git] / mcs / class / corlib / System.Security.Cryptography / RSAPKCS1SignatureDeformatter.cs
index f608fcbf37d7c5ce41f8c4ab35324f307cd0e69e..ef33e1366fa9f45be5c6ddb1ab8bc81f6f18026a 100644 (file)
@@ -5,11 +5,7 @@
 //     Sebastien Pouliot <sebastien@ximian.com>
 //
 // (C) 2002, 2003 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;
 using System.Globalization;
+using System.Runtime.InteropServices;
 using Mono.Security.Cryptography;
 
 namespace System.Security.Cryptography { 
        
+#if NET_2_0
+       [ComVisible (true)]
+#endif
        public class RSAPKCS1SignatureDeformatter : AsymmetricSignatureDeformatter {
        
                private RSA rsa;
@@ -60,8 +59,13 @@ namespace System.Security.Cryptography {
        
                public override void SetKey (AsymmetricAlgorithm key) 
                {
+#if NET_2_0
+                       if (key == null)
+                               throw new ArgumentNullException ("key");
+#else
+                       // 1.0/1.1 accepted null without an ArgumentNullException!
+#endif
                        rsa = (RSA) key;
-                       // here null is accepted without an ArgumentNullException!
                }
        
                public override bool VerifySignature (byte[] rgbHash, byte[] rgbSignature)