This function returns hash of supplied string in hexadecimal format.
Namespace:
TreeksLicensingLibrary2
Assembly:
TreeksLicensingLibrary2 (in TreeksLicensingLibrary2.dll) Version: 2.1.8318.42066 (2.1.0.0)
Syntax public string iStringHash(
string hash_type,
string text,
string salt = ""
)
Public Function iStringHash (
hash_type As String,
text As String,
Optional salt As String = ""
) As String
public:
String^ iStringHash(
String^ hash_type,
String^ text,
String^ salt = L""
)
member iStringHash :
hash_type : string *
text : string *
?salt : string
(* Defaults:
let _salt = defaultArg salt ""
*)
-> string
Parameters
- hash_type
- Type: SystemString
Hash algorithm to use: md5, sha1, sha256, sha512 - text
- Type: SystemString
String to be hashed - salt (Optional)
- Type: SystemString
Optional salt to be added to hashed text to prevent rainbow attacks
Return Value
Type:
StringHash result represented in hexadecimal format
Remarks The "i" named functions are here to allow access to static members in COM applications. In .NET applications you can call static methods directly and don't need to instantiate this class.
See Also