A simple tool to generate and verify bcrypt hashes. All processing happens in your browser for security.
Generate a bcrypt hash from your text. Higher rounds provide better security but take longer to process.
Check if a bcrypt hash matches the original text.
Bcrypt is a password hashing function designed to be slow and resistant to brute-force attacks.
The rounds parameter determines how many iterations the algorithm performs. Higher values are more secure but slower.
All hashing happens in your browser. No data is sent to external servers.