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.

About KDFs

KDFs derive cryptographic keys from passwords or shared secrets. Argon2, bcrypt, scrypt, and PBKDF2 are designed to resist brute-force attacks.

Runtime

All tools run locally in the browser using WebAssembly and JavaScript hash libraries.

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.