2009-05-06 Lluis Sanchez Gual <lluis@novell.com>
[mono.git] / mcs / class / corlib / System.Security.Cryptography / CspParameters.cs
index 1645d5a264167567db60820a524047b0fd825acf..f1b91a3824098a1afc0b6a5e6f0d67172e51eb76 100644 (file)
@@ -1,5 +1,5 @@
 //\r
-// System.Security.Cryptography CspParameters.cs\r
+// System.Security.Cryptography.CspParameters.cs\r
 //\r
 // Authors:\r
 //     Thomas Neidhart (tome@sbox.tugraz.at)\r
@@ -83,18 +83,18 @@ namespace System.Security.Cryptography {
                private SecureString _password;
                private IntPtr _windowHandle;
 
-               public CspParameters (int dwTypeIn, string strProviderNameIn, string strContainerNameIn
+               public CspParameters (int providerType, string providerName, string keyContainerName
                        CryptoKeySecurity cryptoKeySecurity, IntPtr parentWindowHandle)
-                       : this (dwTypeIn, strProviderNameIn, strContainerNameIn)
+                       : this (providerType, providerName, keyContainerName)
                {
                        if (cryptoKeySecurity != null)
                                CryptoKeySecurity = cryptoKeySecurity;
                        _windowHandle = parentWindowHandle;
                }
 
-               public CspParameters (int dwTypeIn, string strProviderNameIn, string strContainerNameIn
+               public CspParameters (int providerType, string providerName, string keyContainerName
                        CryptoKeySecurity cryptoKeySecurity, SecureString keyPassword)
-                       : this (dwTypeIn, strProviderNameIn, strContainerNameIn)
+                       : this (providerType, providerName, keyContainerName)
                {
                        if (cryptoKeySecurity != null)
                                CryptoKeySecurity = cryptoKeySecurity;