# Bcrypt Hash Generator

> Hash a password with bcrypt at a configurable cost factor — the right way to store passwords.

To hash a password with bcrypt, enter it above and choose a cost factor. Bcrypt is deliberately slow and automatically salts every hash, so identical passwords produce different results and brute-force attacks stay expensive even with modern hardware.

**URL:** https://convertto.tech/t/bcrypt-hash-generator
**Category:** Hash & Crypto Tools (https://convertto.tech/c/crypto-tools)
**Privacy:** Runs entirely in the browser; no upload
**Cost:** Free, no sign-up
**Last updated:** 2026-08-01

## Key facts

- **Privacy:** Runs entirely in your browser — nothing is uploaded
- **Cost:** Free, unlimited, no sign-up

## How to use

1. Enter or paste your password.
2. Set the cost factor.
3. Press Run, then download the result when it is ready.

## FAQ

### Why does the same password give a different hash each time?

Bcrypt generates a new random salt for every hash and stores it in the output. This defeats rainbow tables — the same password produces a different hash for every user.

### What cost factor should I use?

Pick the highest value where hashing still takes under about 250 ms on your production hardware. In 2026 that is typically 12 or 13 for a server, and the tool shows the measured time for each setting.

## Related tools

- [Passphrase Generator](https://convertto.tech/t/passphrase-generator): Generate memorable Diceware-style passphrases from random words.
- [Password Generator](https://convertto.tech/t/password-generator): Generate strong random passwords using your browser's cryptographic random source.
- [Password Strength Checker](https://convertto.tech/t/password-strength-checker): Estimate how long a password would take to crack, and see exactly what weakens it.
- [MD5 Hash Generator](https://convertto.tech/t/md5-hash-generator): Generate an MD5 hash from any text — instantly and entirely in your browser.
- [Password Policy Tester](https://convertto.tech/t/password-policy-tester): Test a password against a policy and see whether the policy actually improves security.
- [SHA-1 Hash Generator](https://convertto.tech/t/sha1-hash-generator): Generate a SHA-1 hash from text — 160-bit digest, computed locally.
- [SHA-256 Hash Generator](https://convertto.tech/t/sha256-hash-generator): Generate a secure SHA-256 hash from any text, in hex and Base64.
- [SHA-384 Hash Generator](https://convertto.tech/t/sha384-hash-generator): Generate a SHA-384 hash — a truncated SHA-512 used in TLS cipher suites.
- [SSH Key Fingerprint Calculator](https://convertto.tech/t/ssh-key-fingerprint): Compute the SHA-256 and MD5 fingerprints of an OpenSSH public key and read its details.
