PasswordDeriveBytes.Salt Property

Definition

Gets or sets the key salt value for the operation.

public:
 property cli::array <System::Byte> ^ Salt { cli::array <System::Byte> ^ get(); void set(cli::array <System::Byte> ^ value); };
public byte[]? Salt { get; set; }
public byte[] Salt { get; set; }
member this.Salt : byte[] with get, set
Public Property Salt As Byte()

Property Value

Byte[]

The key salt value for the operation.

Exceptions

The key salt value is fixed and an attempt is made to change this value.

Remarks

A dictionary attack is an attack in which the attacker attempts to decrypt an encrypted message by comparing the encrypted value with previously computed encrypted values for the most likely keys. This attack is made much more difficult by the introduction of random bytes at the end of the password before the key derivation. These random bytes are known as salt.

Applies to

See also