Forrest logo
back to context overview

argon2

List of commands for argon2:

  • argon2:tldr:04c95 argon2: Display the output hash without additional information.
    $ echo "${password}" | argon2 "${salt_text}" -e
    try on your machine
    explain this command
  • argon2:tldr:08fd0 argon2: Calculate a hash with a password and a salt with the default parameters.
    $ echo "${password}" | argon2 "${salt_text}"
    try on your machine
    explain this command
  • argon2:tldr:e0f7c argon2: Calculate a hash with the specified algorithm.
    $ echo "${password}" | argon2 "${salt_text}" -${select}
    try on your machine
    explain this command
  • argon2:tldr:e47c5 argon2: 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}
    try on your machine
    explain this command
back to context overview