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#
public string ComputeHashFromBytes(
	byte[] contents
)
Visual Basic
Public Function ComputeHashFromBytes ( _
	contents As Byte() _
) As String
Visual C++
public:
virtual String^ ComputeHashFromBytes(
	array<unsigned char>^ contents
) sealed

Parameters

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

Return Value

Hash

Implements

IHash..::..ComputeHashFromBytes(array<Byte>[]()[][])

See Also