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

Parameters

contents
Type: array<System..::..Byte>[]()[][]
The contents as a set of bytes.
style
Type: LLCryptoLib.Utils..::..HexEnum
The hexadecimal style.

Return Value

Hash

Implements

IHash..::..ComputeHashFromBytesStyle(array<Byte>[]()[][], HexEnum)

See Also