Compute Hash of given file.

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

Syntax

C#
string ComputeHashFileStyleEx(
	string completeFileName,
	HexEnum style,
	CallbackEntry cbe,
	AutoResetEvent resetDemand
)
Visual Basic
Function ComputeHashFileStyleEx ( _
	completeFileName As String, _
	style As HexEnum, _
	cbe As CallbackEntry, _
	resetDemand As AutoResetEvent _
) As String
Visual C++
String^ ComputeHashFileStyleEx(
	String^ completeFileName, 
	HexEnum style, 
	CallbackEntry^ cbe, 
	AutoResetEvent^ resetDemand
)

Parameters

completeFileName
Type: System..::..String
Absolute path to a file
style
Type: LLCryptoLib.Utils..::..HexEnum
Style of displaying hex numbers
cbe
Type: LLCryptoLib..::..CallbackEntry
Delegate to be reported of operation advancement
resetDemand
Type: System.Threading..::..AutoResetEvent
A reset event to call when the operation must be cancelled

Return Value

Hash

See Also