ComfyUI Node
PBKDF2HMAC Key Verification
A ComfyUI node in ARG Toolkit/Cryptography/Modern/Key Derivation with 6 inputs and 1 output.
PBKDF2HMAC Key Verification
- message
- salt
- expected_key
- verified_status
◄length32►
◄algorithm▾►
◄iterations1200000►
CategoryARG Toolkit/Cryptography/Modern/Key Derivation
Inputs (6)
| Name | Type | Default | Description |
|---|---|---|---|
| length | INT | 3216–256 | The desired length of the derived key in bytes. |
| message | BYTESLIKE | The message to derive key from. Must be bytes. | |
| salt | BYTESLIKE | The nonce used to generate the key. Use SystemRandom (Random Nonce Generator) to generate this. | |
| algorithm | COMBO | The algorithm to use for hash generation. | |
| iterations | INT | 12000001–2147483647 | The number of iterations to perform of the hash function. This can be used to control the length of time the operation takes. Higher numbers help mitigate brute force attacks against derived keys. |
| expected_key | BYTESLIKE | The expected result of key derivation. |
Outputs (1)
| Name | Type | Description |
|---|---|---|
| verified_status | BOOLEAN | — |