HashCore Method
See Also 
SourceCode.Security.Cryptography Namespace > Murmur3 Class : HashCore Method



array
The input to compute the hash code for.
ibStart
The offset into the byte array from which to begin using data.
cbSize
The number of bytes in the byte array to use as data.

Glossary Item Box

When overridden in a derived class, routes data written to the object into the hash algorithm for computing the hash.

Syntax

Visual Basic (Declaration) 
Protected Overrides NotOverridable Sub HashCore( _
   ByVal array() As Byte, _
   ByVal ibStart As Integer, _
   ByVal cbSize As Integer _
) 
Visual Basic (Usage)Copy Code
Dim instance As Murmur3
Dim array() As Byte
Dim ibStart As Integer
Dim cbSize As Integer
 
instance.HashCore(array, ibStart, cbSize)
C# 
protected override void HashCore( 
   byte[] array,
   int ibStart,
   int cbSize
)
C++/CLI 
protected:
void HashCore( 
   array<byte>^ array,
   int ibStart,
   int cbSize
) override 

Parameters

array
The input to compute the hash code for.
ibStart
The offset into the byte array from which to begin using data.
cbSize
The number of bytes in the byte array to use as 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