HKDF Constructor
See Also 
SourceCode.Security.Cryptography Namespace > HKDF Class : HKDF Constructor



hmacFactory
ikm
salt
context

Glossary Item Box

Syntax

Visual Basic (Declaration)  
Public Function New( _
   ByVal hmacFactory As Func(Of HMAC), _
   ByVal ikm() As Byte, _
   Optional ByVal salt() As Byte, _
   Optional ByVal context() As Byte _
)
Visual Basic (Usage) Copy Code
Dim hmacFactory As Func(Of HMAC)
Dim ikm() As Byte
Dim salt() As Byte
Dim context() As Byte
 
Dim instance As New HKDF(hmacFactory, ikm, salt, context)
C#  
public HKDF( 
   Func<HMAC> hmacFactory,
   byte[] ikm,
   byte[] salt,
   byte[] context
)

Parameters

hmacFactory
ikm
salt
context

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