Skip to main content
Hashes a string with the provided algorithm, the output can be a string or binary. A hash is a fixed-length scrambled code derived from the value: the same input always produces the same hash, but the original value cannot be read back from it. Use this to create a stable, anonymised identifier from a value, to compare two values without storing the originals, or, with a secret key, to produce a signature another system can verify.

Fields

Sample data

FieldValue
Hash algorithmsha256
Return binary data instead of lowercase hexitsoff
Use HMAC keyoff
Input:
{ "email": "jane.doe@example.com" }
Output:
{ "email": "86e0b9e56c17cc4d12387e1949b85053fbe73bc3ce5a1188713a9d300cc6133d" }