코드, 데이터 및 QR 도구

Bcrypt Hash 생성기

「Bcrypt Hash 생성기」는 코드, 데이터 및 QR 작업을 위한 브라우저 도구입니다. 입력과 결과는 일반적으로 이 기기에서 처리되며 가입이 필요하지 않습니다.

브라우저에서 로컬 처리가입 불필요개인정보 안내 ↗

Processed locally in your browser. Do not enter a production password on a shared or untrusted device.

Allowed range: 4–15. Higher costs take longer.

Enter a password to generate a bcrypt hash.

Your password and generated hash are not saved, uploaded, or sent to a third party.

사용 방법

사용 방법

  1. Enter a password only on a device and page you trust.
  2. Choose an integer cost factor from 4 to 15 and generate the hash.
  3. Copy the bcrypt hash, then clear the password field when finished.

Bcrypt is a password hashing function

Bcrypt is deliberately slow and salted, making it suitable for password storage when configured with an appropriate cost factor. It is not the same algorithm as SHA-256 or a general-purpose digest.

Cost factor

The cost factor is restricted to integers from 4 through 15. Higher values increase work and therefore take longer; choose a value appropriate for the system that will verify the hash.

Passwords are not saved

When an implementation is available, password processing should remain local to the browser. Never enter a real password into an untrusted page, and clear sensitive inputs after use.

자주 묻는 질문

더 알아보기

Which cost factors are accepted?

This page accepts integer cost factors from 4 through 15.

Can SHA-256 be used instead?

No. SHA-256 is a different algorithm and is not a bcrypt replacement for password hashing.

Is my password stored or uploaded?

No. Hashing runs locally in your browser, and this page does not save or send the password. Do not enter a real production password on an untrusted page or device.

What should applications use for password storage?

Use a maintained server-side password hashing library and follow its guidance for bcrypt cost settings, salts, upgrades, and account recovery.