MimeKit.Cryptography.X509CertificateDatabase.X509CertificateDatabase C# (CSharp) Method

X509CertificateDatabase() protected method

Initializes a new instance of the MimeKit.Cryptography.X509CertificateDatabase class.
The password is used to encrypt and decrypt private keys in the database and cannot be null.
/// is null. ///
protected X509CertificateDatabase ( string password ) : System
password string The password used for encrypting and decrypting the private keys.
return System
		protected X509CertificateDatabase (string password)
		{
			if (password == null)
				throw new ArgumentNullException ("password");

			EncryptionAlgorithm = DefaultEncryptionAlgorithm;
			MinIterations = DefaultMinIterations;
			SaltSize = DefaultSaltSize;

			passwd = password.ToCharArray ();
		}