Tools
Hash generator (MD5, SHA-2, bcrypt)
Produce MD5, SHA-1, SHA-256, SHA-512 and bcrypt.
A hash is a one-way digest. MD5 and SHA-1 are weak; use SHA-256 for integrity and bcrypt for passwords.
Bcrypt uses a new salt every time, so the same text hashes differently. That is expected.
SHA-256 is enough for file integrity and git-style fingerprints. Store passwords with bcrypt (or Argon2, not here); salt and cost resist brute force.
Frequently asked questions
Is hashing encryption?
No. Encryption can be reversed. A hash is not designed to recover the input.
Is MD5 still used?
For legacy checksums, yes. It is collision-prone; do not use it in new designs.
Why is SHA-1 listed?
Legacy interop. TLS and git have moved away from it.
What is bcrypt cost?
The work factor; higher is slower. The tool uses a reasonable default.
Does the text go to the server?
The hash API runs on the server. Do not hash secrets you would not send; prefer a local tool.