Blake2b.HashCore Method
Namespace: Rebex.Security.Cryptography
Assembly: Rebex.Security.dll (version 7.0.9083)
HashCore(Byte[], Int32, Int32)
Hashes the specified segment of the specified array
.
Declaration
protected override void HashCore(byte[] array, int ibStart, int cbSize)
Parameters
Type | Name | Description |
---|---|---|
Byte[] | array | The byte array that contains data to be hashed. |
Int32 | ibStart | Start index of the segment to be hashed of the |
Int32 | cbSize | Size of the segment to be hashed of the |
Overrides
HashCore(ReadOnlySpan<Byte>)
Hashes the specified source
span.
Declaration
protected override void HashCore(ReadOnlySpan<byte> source)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Byte> | source | The ReadOnlySpan<T> that contains data to be hashed. |