Create a bcrypt password hash with a random salt and selected cost.
The frame below runs the same code as this page, in the reader's own browser. Nothing is sent to us, and nothing is sent to you.
Pick a dark background and the text and panels follow it, so the frame stays readable on a dark page.
Bcrypt expands a password and a random salt through an EksBlowfish key schedule for the selected cost, then encodes the salt and derived checksum in its modular crypt format. The cost doubles the key-schedule work for each increment.
my-secret-password
$2b$10$KEpGjgx8hbjnrlKCPMEar.cYzK8KYGN9RDG/Gb7NytN2I3clZyNmG
Legacy account stores, import migrations, and bcrypt test vectors create password hashes.