Compute Hash of given string

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

Syntax

C#
string ComputeHashStyle(
	string message,
	HexEnum style,
	Encoding textEncoding
)
Visual Basic
Function ComputeHashStyle ( _
	message As String, _
	style As HexEnum, _
	textEncoding As Encoding _
) As String
Visual C++
String^ ComputeHashStyle(
	String^ message, 
	HexEnum style, 
	Encoding^ textEncoding
)

Parameters

message
Type: System..::..String
Message to compute the hash for
style
Type: LLCryptoLib.Utils..::..HexEnum
Style of displaying hex numbers
textEncoding
Type: System.Text..::..Encoding
The text encoding (ie: UTF8, ASCII).

Return Value

Hash string

See Also