Compute Hash of given file. The given file must be a text file.

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

Syntax

C#
public string ComputeHashTextFile(
	string completeFileName,
	Encoding enc
)
Visual Basic
Public Function ComputeHashTextFile ( _
	completeFileName As String, _
	enc As Encoding _
) As String
Visual C++
public:
virtual String^ ComputeHashTextFile(
	String^ completeFileName, 
	Encoding^ enc
) sealed

Parameters

completeFileName
Type: System..::..String
Absolute path to a file
enc
Type: System.Text..::..Encoding
Text encoding - of file and of return string

Return Value

Hash

Implements

IHash..::..ComputeHashTextFile(String, Encoding)

See Also