Compute Hash of given file.

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

Syntax

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

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

Implements

IHash..::..ComputeHashFileStyleEx(String, HexEnum, CallbackEntry, AutoResetEvent)

See Also