LinuxCommandLibrary

argon2

Calculate Argon2 cryptographic hashes.

TLDR

Calculate a hash with a password and a salt with the default parameters

$ echo "[password]" | argon2 "[salt_text]"
copy


Calculate a hash with the specified algorithm
$ echo "[password]" | argon2 "[salt_text]" -[d|i|id]
copy


Display the output hash without additional information
$ echo "[password]" | argon2 "[salt_text]" -e
copy


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]
copy

Copied to clipboard