
argon2
List of commands for argon2:
-
argon2:tldr:04c95 argon2: Display the output hash without additional information.$ echo "${password}" | argon2 "${salt_text}" -etry on your machineexplain 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 machineexplain this command
-
argon2:tldr:e0f7c argon2: Calculate a hash with the specified algorithm.$ echo "${password}" | argon2 "${salt_text}" -${select}try on your machineexplain 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 machineexplain this command