PBKDF2 Hmac Hash
PBKDF2 Hmac Hash (Password-Based Key Derivation Function 2 using HMAC) is used to either securely hash a password or derive cryptographic keys from passwords
This might be useful if you want to store some passwords in the database for authentication purpose or generate a unique cryptographic key which can be used to encrypt and decrypt the data.
Properties Panel
Field
Description
Required
Default
Hash Algorithm
Select any of the hash algorithm given: sha256
, sha1
, sha224
, sha512
, md5
true
-
Hash Password
Password that needs to be hashed or generate a key that for encryption
true
-
Hash Salt
The salt value to use for the encryption
true
-
Hash Iterations
The number of iterations for the key derivation function
false
0
Hash DKLen
The desired length of the derived key
false
0
Returns
result
- The hexadecimal value of the key derived. You can access this using Magical Autocomplete (e.g. $.<node_name>.result
) in any node below this node.
Last updated