Compute hash function of a text string
Namespace: LLCryptoLib.HashAssembly: LLCryptoLib (in LLCryptoLib.dll) Version: 2.0.1024.0 (2.0.1024)
Syntax
C# |
---|
string ComputeHash(
string message,
Encoding textEncoding
) |
Visual Basic |
---|
Function ComputeHash ( _
message As String, _
textEncoding As Encoding _
) As String |
Visual C++ |
---|
String^ ComputeHash(
String^ message,
Encoding^ textEncoding
) |
Parameters
- message
- Type: System..::..String
Text string
- textEncoding
- Type: System.Text..::..Encoding
The text encoding (ie: UTF8, ASCII).
Return Value
Hash as a sequence of hexadecimal characters
See Also