PasswordHMAC Constructor
See Also 
SourceCode.Cryptography Namespace > PasswordHMAC Class : PasswordHMAC Constructor



identity
data

Glossary Item Box

Syntax

Visual Basic (Declaration)  
Public Function New( _
   ByVal identity() As Byte, _
   ByVal data() As Byte _
)
Visual Basic (Usage) Copy Code
Dim identity() As Byte
Dim data() As Byte
 
Dim instance As New PasswordHMAC(identity, data)
C#  
public PasswordHMAC( 
   byte[] identity,
   byte[] data
)
C++/CLI  
public:
PasswordHMAC( 
   array<byte>^ identity,
   array<byte>^ data
)

Parameters

identity
data

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