Salt Property
Collapse the table of content
Expand the table of content

Rfc2898DeriveBytes.Salt Property

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Gets or sets the key salt value for the operation.

Namespace:  System.Security.Cryptography
Assembly:  mscorlib (in mscorlib.dll)

public byte[] Salt { get; set; }

Property Value

Type: System.Byte []
The key salt value for the operation.

ExceptionCondition
ArgumentException

The specified salt size is smaller than 8 bytes.

ArgumentNullException

The salt is null.

Salt, a random set of bytes, is used to make unauthorized decrypting of a message more difficult. 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 salt, or random bytes, at the end of the password before the key derivation.

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Windows Phone

Show:
© 2017 Microsoft