Initializes a new instance of Rfc2898DeriveBytes using a password, salt size, and number of iterations.

Namespace:  Rebex.Security.Cryptography
Assembly:  Rebex.Common (in Rebex.Common.dll)

Syntax

Visual Basic
Public Sub New ( _
	password As Byte(), _
	salt As Byte(), _
	iterations As Integer _
)
C#
public Rfc2898DeriveBytes(
	byte[] password,
	byte[] salt,
	int iterations
)

Parameters

password
Type: array<System..::..Byte>[]()[][]
The password used to derive the key.
salt
Type: array<System..::..Byte>[]()[][]
The key salt value used to derive the key.
iterations
Type: System..::..Int32
Number of iterations.

Version Information

.NET Compact Framework

Supported in: 3.9, 3.5

See Also