X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2Fcorlib%2FSystem.Security.Cryptography%2FCspParameters.cs;h=f1b91a3824098a1afc0b6a5e6f0d67172e51eb76;hb=a5b3f56d50d09f37c6eaedc7e6971e3f63f7ac80;hp=1645d5a264167567db60820a524047b0fd825acf;hpb=b2262f41726a89c8209facb3ea9e4be9582422b5;p=mono.git diff --git a/mcs/class/corlib/System.Security.Cryptography/CspParameters.cs b/mcs/class/corlib/System.Security.Cryptography/CspParameters.cs index 1645d5a2641..f1b91a38240 100644 --- a/mcs/class/corlib/System.Security.Cryptography/CspParameters.cs +++ b/mcs/class/corlib/System.Security.Cryptography/CspParameters.cs @@ -1,5 +1,5 @@ // -// System.Security.Cryptography CspParameters.cs +// System.Security.Cryptography.CspParameters.cs // // Authors: // Thomas Neidhart (tome@sbox.tugraz.at) @@ -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;