System.Security.Cryptography.PasswordDeriveBytes.PasswordDeriveBytes C# (CSharp) Method

PasswordDeriveBytes() public method

public PasswordDeriveBytes ( byte password, byte salt ) : System.Globalization
password byte
salt byte
return System.Globalization
	public PasswordDeriveBytes (byte[] password, byte[] salt) 
	{
		Prepare (password, salt, "SHA1", 100);
	}

Same methods

PasswordDeriveBytes::PasswordDeriveBytes ( byte password, byte salt, CspParameters cspParams ) : System.Globalization
PasswordDeriveBytes::PasswordDeriveBytes ( byte password, byte salt, string hashName, int iterations ) : System.Globalization
PasswordDeriveBytes::PasswordDeriveBytes ( byte password, byte salt, string hashName, int iterations, CspParameters cspParams ) : System.Globalization
PasswordDeriveBytes::PasswordDeriveBytes ( string strPassword, byte rgbSalt ) : System.Globalization
PasswordDeriveBytes::PasswordDeriveBytes ( string strPassword, byte rgbSalt, CspParameters cspParams ) : System.Globalization
PasswordDeriveBytes::PasswordDeriveBytes ( string strPassword, byte rgbSalt, string strHashName, int iterations ) : System.Globalization
PasswordDeriveBytes::PasswordDeriveBytes ( string strPassword, byte rgbSalt, string strHashName, int iterations, CspParameters cspParams ) : System.Globalization