KDFs 7 tools Browser only
Key Derivation & Password Hashing
Modern password hashing algorithms designed to resist brute-force attacks. Argon2 winner of Password Hashing Competition, bcrypt, scrypt, PBKDF2, and HKDF.
KDFs FAQ
Which password hashing tool should I choose?
Argon2id is the modern default for new password storage. bcrypt and scrypt remain useful when compatibility or existing infrastructure requires them.
Can I use SHA-256 for passwords?
Do not use a plain SHA-256 hash for password storage. Use a dedicated KDF or password hashing algorithm with a unique salt and tuned cost settings.