Crypto Helper
The Crypto Helper allows you to use cryptographic functions.
Categories: helpers
Type: cryptoHelper/v1
Actions
Generate Password
Name: generatePassword
Generate a random password of the specified length.
Properties
Name | Label | Type | Description | Required |
---|---|---|---|---|
length | Length | INTEGER | The length of the password. | true |
characterSet | Character Set | STRING OptionsABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789, ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789~`!@#$%^&*()-_=+[{]}|;:’”,<.>/? | The character set to be used for generating the password. | true |
Example JSON Structure
{ "label" : "Generate Password", "name" : "generatePassword", "parameters" : { "length" : 1, "characterSet" : "" }, "type" : "cryptoHelper/v1/generatePassword"}
Output
Type: STRING
Hash
Name: hash
Computes and returns the hash of the input.
Properties
Name | Label | Type | Description | Required |
---|---|---|---|---|
algorithm | Cryptographic Algorithm | STRING OptionsMD5, SHA-1, SHA-256 | The cryptographic algorithm that will be used to hash the input. | true |
input | Input | STRING | Calculates the hash of the provided input. | true |
Example JSON Structure
{ "label" : "Hash", "name" : "hash", "parameters" : { "algorithm" : "", "input" : "" }, "type" : "cryptoHelper/v1/hash"}
Output
Type: STRING
Hmac
Name: hmac
Computes and returns the HMAC of the input.
Properties
Name | Label | Type | Description | Required |
---|---|---|---|---|
algorithm | Cryptographic Algorithm | STRING OptionsHmacMD5, HmacSHA1, HmacSHA256 | The cryptographic algorithm that will be used to hash the input. | true |
input | Input | STRING | Generates a cryptographic HMAC for the provided input. | true |
key | Key | STRING | Key that will be used for the encryption. | true |
Example JSON Structure
{ "label" : "Hmac", "name" : "hmac", "parameters" : { "algorithm" : "", "input" : "", "key" : "" }, "type" : "cryptoHelper/v1/hmac"}
Output
Type: STRING