ComfyUI Node
Argon2id Key Verification
A ComfyUI node in ARG Toolkit/Cryptography/Modern/Key Derivation with 10 inputs and 1 output.
Argon2id Key Verification
- message
- salt
- expected_key
- ad
- secret
- verified_status
◄length32►
◄modetrue►
◄iterations1►
◄parallel_lanes4►
◄memory_cost65536►
CategoryARG Toolkit/Cryptography/Modern/Key Derivation
Inputs (10)
| 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. | |
| mode | BOOLEAN | true | — |
| iterations | INT | 1 | Also known as passes, this is used to tune the running time independently of the memory size. |
| parallel_lanes | INT | 4 | The number of lanes (parallel threads) to use. Also known as parallelism. |
| memory_cost | INT | 655361–2147483647 | The amount of memory to use in kibibytes. 1 kibibyte (KiB) is 1024 bytes. This must be at minimum `8 * parallel_lanes`. |
| expected_key | BYTESLIKE | The expected result of key derivation. | |
| adopt | BYTESLIKE | Optional associated data. | |
| secretopt | BYTESLIKE | Optional secret data, to be used for keyed hashing. |
Outputs (1)
| Name | Type | Description |
|---|---|---|
| verified_status | BOOLEAN | — |