Pbkdf2 Constructor CryptSharp
Creates a new PBKDF2 stream.

Namespace: CryptSharp.Utility
Assembly: CryptSharp (in CryptSharp.dll) Version: 2.0.0.0
Syntax

public Pbkdf2(
	KeyedHashAlgorithm hmacAlgorithm,
	byte[] salt,
	int iterations
)

Parameters

hmacAlgorithm
Type: OnlineSystem.Security.Cryptography KeyedHashAlgorithm
The HMAC algorithm to use, for example OnlineHMACSHA256. Make sure to set OnlineKey.
salt
Type:  OnlineSystem Byte 
The salt. A unique salt means a unique PBKDF2 stream, even if the original key is identical.
iterations
Type: OnlineSystem Int32
The number of iterations to apply.
See Also