[corlib] Parse datetime string using culture calendar. Fixes #18052
[mono.git] / mcs / class / corlib / System.Security.Cryptography / RSAPKCS1KeyExchangeDeformatter.cs
index a8d4157d1e7f1a3863e54125dc8f004fc1e2e9d5..163fd303d4bfefb8e8bce17706e3913380e120ce 100644 (file)
@@ -33,18 +33,15 @@ using Mono.Security.Cryptography;
 
 namespace System.Security.Cryptography { 
 
-#if NET_2_0
        [ComVisible (true)]
-#endif
        public class RSAPKCS1KeyExchangeDeformatter : AsymmetricKeyExchangeDeformatter {
        
                private RSA rsa;
-               private string param;
+//             private string param;
                private RandomNumberGenerator random;
        
                public RSAPKCS1KeyExchangeDeformatter () 
                {
-                       rsa = null;
                }
        
                public RSAPKCS1KeyExchangeDeformatter (AsymmetricAlgorithm key) 
@@ -62,14 +59,14 @@ namespace System.Security.Cryptography {
                        set { random = value; }
                }
        
-               public override byte[] DecryptKeyExchange (byte[] rgbData
+               public override byte[] DecryptKeyExchange (byte[] rgbIn
                {
                        if (rsa == null) {
                                throw new CryptographicUnexpectedOperationException (
                                        Locale.GetText ("No key pair available."));
                        }
 
-                       byte[] result = PKCS1.Decrypt_v15 (rsa, rgbData);
+                       byte[] result = PKCS1.Decrypt_v15 (rsa, rgbIn);
                        if (result != null)
                                return result;