...
hash(algorithm, salt, string, format)
Argument | Type | Description |
---|---|---|
algorithm | String | Defines one of the following hashing algorithms to use:
|
salt | String | Additional salt characters to add to the end of the string before hashing. |
string | String | The string to be hashed. Must not be null. |
format | String | Can have the values of:
|
Examples
hash("SHA-256", _NULL, "testValue")
...
The hash function from version 10.1 onwards supports passing the incorporation values of secret keys (see Secret Key and Local Secret) into the hash value.
...