About the Hash Generator
Generate MD5, SHA-256 and Bcrypt hashes from any text, entirely in your browser. Useful for verifying file integrity, comparing checksums, generating tokens and creating password hashes during development. No text is sent to any server — every calculation happens locally.
How to generate a hash in 4 steps
- Choose the algorithm (MD5, SHA-256 or Bcrypt).
- Paste or type the text to convert.
- For Bcrypt only: adjust the cost (rounds). Default: 10.
- Click Generate and use the Copy button.
Difference between MD5, SHA-256 and Bcrypt
| Algorithm | Size | Ideal use | Safe for passwords? |
|---|---|---|---|
| MD5 | 128 bits / 32 chars | Checksum, integrity | No |
| SHA-256 | 256 bits / 64 chars | Signatures, blockchain, integrity | Not recommended |
| Bcrypt | ~60 chars (with salt) | Password storage | Yes |