Compute Hash of given string

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

Syntax

C#
string ComputeHashEx(
	string message,
	char divide,
	Encoding textEncoding
)
Visual Basic
Function ComputeHashEx ( _
	message As String, _
	divide As Char, _
	textEncoding As Encoding _
) As String
Visual C++
String^ ComputeHashEx(
	String^ message, 
	wchar_t divide, 
	Encoding^ textEncoding
)

Parameters

message
Type: System..::..String
Message to compute the hash for
divide
Type: System..::..Char
Char to divide hexes.
textEncoding
Type: System.Text..::..Encoding
The text encoding (ie: UTF8, ASCII).

Return Value

Hash string

See Also