// // System.Security.Cryptography CspParameters.cs // // Author: // Thomas Neidhart (tome@sbox.tugraz.at) // using System; namespace System.Security.Cryptography { /// /// Contains information passed to Crypto Service Providers (CSP) /// public sealed class CspParameters { private CspProviderFlags _Flags; public CspParameters() : this(1) {} public CspParameters(int dwTypeIn) : this(dwTypeIn, null) {} public CspParameters(int dwTypeIn, string strProviderNameIn) : this(dwTypeIn, null, null) {} public CspParameters(int dwTypeIn, string strProviderNameIn, string strContainerNameIn) { ProviderType = dwTypeIn; ProviderName = strProviderNameIn; KeyContainerName = strContainerNameIn; // not defined in specs, only tested from M$ impl KeyNumber = -1; } public string KeyContainerName; public int KeyNumber; public string ProviderName; public int ProviderType; public CspProviderFlags Flags { get { return _Flags; } set { _Flags = value; } } } // CspParameters } // System.Security.Cryptography