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



hmacFactory
password
saltSize
iterations

Glossary Item Box

Syntax

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

Parameters

hmacFactory
password
saltSize
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