Compute Hash of given string
Namespace: LLCryptoLib.HashAssembly: LLCryptoLib (in LLCryptoLib.dll) Version: 2.0.1024.0 (2.0.1024)
Syntax
C# |
---|
public string ComputeHash(
string message,
Encoding textEncoding
) |
Visual Basic |
---|
Public Function ComputeHash ( _
message As String, _
textEncoding As Encoding _
) As String |
Visual C++ |
---|
public:
virtual String^ ComputeHash(
String^ message,
Encoding^ textEncoding
) sealed |
Parameters
- message
- Type: System..::..String
Message to compute the hash for
- textEncoding
- Type: System.Text..::..Encoding
The text encoding (ie: UTF8, ASCII).
Return Value
Hash string
Implements
IHash..::..ComputeHash(String, Encoding)
See Also