Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

ArgumentTypeDescription

algorithm

String

The name Defines one of the following hashing algorithms to use:

  • SHA-256
  • SHA-384
  • SHA-512
  • SHA-1
  • MD2
  • MD5

salt

String

Additional salt characters to add to the end of the string before hashing.
If no salt is required, specify _NULL.

string

String

The string to be hashed. Must not be null.

...

hash("SHA-256", _NULL, "testValue")

Takes the string testValue, uses SHA-256 algorighm algorithm to convert it to a hashed string. No salt is added. Returns the value: 82fe0c834cbea069013c5eb7828e599a693e0d2411887e2ab273271662973082


Additional Information

The hash function from version 10.1 onwards supports the incorporation of secret keys (see Secret Key and Local Secret) into the hash value.

See Also