Computes the MD5 hash of the specified value and returns it in hexadecimal.
HashMD5( [Value] )
Where:
Value is the value to compute the MD5 hash from.
Rule | Meaning |
---|---|
HashMD5("My text to hash") | Returns a hexadecimal value from the MD5 hash of the text My text to hash. |
HashMD5(123456) | Returns a hexadecimal value from the MD5 hash of the number 123456 after first converting it to text. |
HashMD5(DWCurrentUserPassword) | Returns a hexadecimal value from the MD5 hash of the special variable DWCurrentUserPassword. |