Skip to content

Anonymize Processor

Refael Mizrahi edited this page Jan 20, 2022 · 8 revisions

Anonymize [anonymize]

This processor allows you to Anonymize fields by replacing values with a hash.

Important: Only works on strings

  • fields [array]
  • algorithm - support "SHA256", "SHA1", "SHA384", "SHA512", "MD5"
  • key

Example

{
  "steps": [
    {
      "anonymize": {
        "config": {
          "fields": [
            "checksum"
          ],
          "algorithm": "MD5",
          "key": "ThisIsMyHashingKey"
        }
      }
    }
  ]
}
Clone this wiki locally