Computes the hash value for the specified Stream.

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

Syntax

C#
public byte[] ComputeHash(
	Stream inputStream
)
Visual Basic
Public Function ComputeHash ( _
	inputStream As Stream _
) As Byte()
Visual C++
public:
array<unsigned char>^ ComputeHash(
	Stream^ inputStream
)

Parameters

inputStream
Type: System.IO..::..Stream
The input to compute the hash code for.

Return Value

The computed hash code.

See Also