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