Computes the hash from a set of bytes and returns it as a hexadecimal string.

Namespace: LLCryptoLib.Hash
Assembly: LLCryptoLib (in LLCryptoLib.dll) Version: 2.0.1024.0 (2.0.1024)

Syntax

C#
string ComputeHashFromBytes(
	byte[] contents
)
Visual Basic
Function ComputeHashFromBytes ( _
	contents As Byte() _
) As String
Visual C++
String^ ComputeHashFromBytes(
	array<unsigned char>^ contents
)

Parameters

contents
Type: array<System..::..Byte>[]()[][]
The contents as a set of bytes.

Return Value

Hash

See Also