Developer ToolsGeneratorsFree Tool

Password Hash Generator

Compute a real PBKDF2-SHA256 password hash with 100,000 iterations — a genuine key-derivation function suitable for password storage, not a bare fast hash.

How to Use Password Hash Generator
  1. 1Enter your password
  2. 2Optionally add a line with --- then a salt (hex or text) to reproduce a previous hash
  3. 3Click Process
  4. 4Copy the resulting pbkdf2$sha256$... hash, including the salt shown
Frequently Asked Questions

It's real PBKDF2 (Password-Based Key Derivation Function 2) via the Web Crypto API, run for 100,000 iterations — specifically designed to be slow, which is what makes a password hash resistant to brute-force attacks. This is a genuine key-derivation function, not a single fast SHA-256 pass.

It's within commonly recommended ranges for PBKDF2-SHA256 (recent OWASP guidance suggests 600,000+ for new systems) — for production, consider an even higher iteration count or a memory-hard algorithm like Argon2 or bcrypt if available in your stack.

If you don't provide one, a random 16-byte salt is generated and shown in the output (as hex) — save it, since you'll need the exact same salt to reproduce the same hash later (e.g. for verifying a login). You can also supply your own salt as hex or plain text.

No — the entire PBKDF2 computation runs locally in your browser via the Web Crypto API; nothing is transmitted.

Related Tools

Related Articles

More from Developer Tools