Handlebars Helpers
Encrypt
Encrypts data with a supplied secret during Handlebars substitution. Useful for protected payloads, secure service exchange, and storing sensitive generated values.
Uses
- Use to save sensitive data into the stub
- Use to pass private data to other systems
- Use to encrypt api keys for authorization in API Call Task
Usage
Helper name : encrypt
eg.
{{#encrypt 'password'}}{{/encrypt}}
NOTE
Use with Decrypt to get the original text content back
Examples
Encrypt personal identity information
Example definition:
Saved data
Encrypt a data structure
This method uses the To JSON String helper with encrypt to encrypt a full data structure
Example savedata task:
Saved data