Get-MD5
Command Description
Returns the MD5 value of the target string
Command Prototype
sRet = StrHash(sText)
Parameter Description
Parameter | Required | Type | Default | Description |
---|---|---|---|---|
sText | True | string | "" | The target string to get the MD5 value |
return
sRet,The variable used to save the output of the command.
Demo
TracePrint("----------------------Get MD5 value---------------------- --")
//-------------------------------------------------------------------------------
//[Remarks] Get the MD5 value of the target string.
//Input parameter 1:
// sText--The target string to get the MD5 value.
//out parameters:
// sRet--The variable to which the output of the function call is saved.
//
//Command prototype: sRet = StrHash(sText)
//-------------------------------------------------------------------------------
sRet = StrHash ("UiBot")
TracePrint (sRet)