HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

argon2 — Calculate Argon2 cryptographic hashes. More information: <https://github.com/P-H-C/phc-winner-argon2

Submitted by: @import:tldr-pages··
0
Viewed 0 times
argon2commandclihashesmorecryptographiccalculate

Problem

How to use the argon2 command: Calculate Argon2 cryptographic hashes. More information: <https://github.com/P-H-C/phc-winner-argon2#command-line-utility>.

Solution

argon2 — Calculate Argon2 cryptographic hashes. More information: <https://github.com/P-H-C/phc-winner-argon2#command-line-utility>.

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}}

Code Snippets

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}}

Context

tldr-pages: common/argon2

Revisions (0)

No revisions yet.