Hash Method
See Also 
SourceCode.Cryptography Namespace > PasswordHMAC Class : Hash Method



salt

Glossary Item Box

Syntax

Visual Basic (Declaration)  
Public Function Hash( _
   ByVal salt() As Byte _
) As Byte()
Visual Basic (Usage) Copy Code
Dim instance As PasswordHMAC
Dim salt() As Byte
Dim value() As Byte
 
value = instance.Hash(salt)
C#  
public byte[] Hash( 
   byte[] salt
)
C++/CLI  
public:
array<byte>^ Hash( 
   array<byte>^ salt
) 

Parameters

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