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



hmacFactory
password
saltSize

Glossary Item Box

Syntax

Visual Basic (Declaration)  
Public Function New( _
   ByVal hmacFactory As Func(Of HMAC), _
   ByVal password As String, _
   ByVal saltSize As Integer _
)
Visual Basic (Usage) Copy Code
Dim hmacFactory As Func(Of HMAC)
Dim password As String
Dim saltSize As Integer
 
Dim instance As New PBKDF2(hmacFactory, password, saltSize)
C#  
public PBKDF2( 
   Func<HMAC> hmacFactory,
   string password,
   int saltSize
)
C++/CLI  
public:
PBKDF2( 
   Func<HMAC^>^ hmacFactory,
   String^ password,
   int saltSize
)

Parameters

hmacFactory
password
saltSize

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