- Is this a real hashing tool?
- It produces a PHC-formatted argon2id string for documentation and fixtures. For production password hashing, use your language's argon2 library — browser-side argon2 is too slow to tune safely.
- Why argon2 over bcrypt?
- Argon2 won the Password Hashing Competition (2015). It has memory-hardness — much harder to crack on GPUs. Recommended by OWASP for new systems.
- What parameters should I pick?
- Defaults match OWASP guidance: memory 19 MB, iterations 2, parallelism 1. For high-security systems tune based on OWASP's server-side sizing guide.
- Are these hashes safe to commit to git?
- As fixtures, yes — they don't reveal the password. But treat any hash conservatively; don't commit production hashes to public repos.