Simple CLI program hashing passwords into PHC strings.
Provide one string:
phasher "Hello world"Or multiple strings: (since v0.2)
phasher "Hello world" GoodMorning 'GoodNight'By default, phasher uses Argon2 to hash your data. You can also choose different algorithms.
phasher "Hello world" -a scryptIf there are no strings provided, phasher will read stdin instead:
phasher << EOF
Hello world
Welcome!
EOFphasher < /path/to/a/file.txtYou can also use piping to pass data into phasher:
printf %s "Hello world" | phashercat /path/to/a/file.txt | phasher