PBKDF2 Constructor(Func<HMAC>,String,Byte[],Int32)
See Also 
SourceCode.Security.Cryptography Namespace > PBKDF2 Class > PBKDF2 Constructor : PBKDF2 Constructor(Func<HMAC>,String,Byte[],Int32)



hmacFactory
password
salt
iterations

Glossary Item Box

Syntax

Visual Basic (Declaration)  
Public Function New( _
   ByVal hmacFactory As Func(Of HMAC), _
   ByVal password As String, _
   ByVal salt() As Byte, _
   ByVal iterations As Integer _
)
Visual Basic (Usage) Copy Code
Dim hmacFactory As Func(Of HMAC)
Dim password As String
Dim salt() As Byte
Dim iterations As Integer
 
Dim instance As New PBKDF2(hmacFactory, password, salt, iterations)

Parameters

hmacFactory
password
salt
iterations

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also