Bcrypt Hash Generator
Hash passwords with bcrypt and verify hashes. Pure JavaScript Blowfish implementation -- no server, no external packages. Runs entirely in your browser.
Hash a Password
Password
Cost Factor (rounds = 2^cost)
Verify a Password
Password
Bcrypt Hash
Note: Higher cost factors are more secure but take longer. Cost 10 is a common default. Cost 12+ may take several seconds in the browser. This is a pure-JS Blowfish implementation for educational/testing purposes.
Related tools
Hash GeneratorCrypto
Generate MD5/SHA256/SHA512 hashes in-browser.
HMAC GeneratorCrypto
Generate HMAC (SHA-256/512) using WebCrypto.
PBKDF2 GeneratorCrypto
Derive keys with PBKDF2 (WebCrypto).
File Hash (SHA-256)Crypto
Hash a file locally in your browser.
Checksum VerifierCrypto
Verify file checksums (MD5/SHA-1/SHA-256/SHA-512) by computing and comparing hashes in your browser.
Adler-32 ChecksumCrypto
Compute Adler-32 checksums of text locally in your browser.