SaltedItem Constructor(String,Byte[],Byte[])
See Also 
SourceCode.Security.Cryptography Namespace > SaltedItem Class > SaltedItem Constructor : SaltedItem Constructor(String,Byte[],Byte[])



header
data
salt

Glossary Item Box

Syntax

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

Parameters

header
data
salt

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