Monu Tools

Bcrypt 생성기 및 검증기

브라우저에서 비밀번호를 bcrypt로 해시하고 bcrypt 해시에 대해 비밀번호를 검증합니다.

Bcrypt 사용 방법

  1. 01

    해시 생성은 해시를, 검증은 검증을 선택하세요.

  2. 02

    비밀번호를 입력하고 검증 시 해시도 입력하세요.

  3. 03

    bcrypt 해시 또는 일치 결과를 확인하세요.

Hash and verify passwords

A bcrypt tool that hashes a password at a cost you choose, and verifies a password against an existing bcrypt hash. Everything runs locally in your browser, so passwords stay on your device.

Why bcrypt for passwords

Bcrypt is an adaptive password-hashing function designed specifically for storing passwords. Unlike a fast hash such as SHA-256, it is deliberately slow and includes a built-in salt, which is exactly what you want when defending stored passwords.

The cost factor

The cost factor (the rounds) sets how much work each hash takes. Every extra round doubles the computation, so raising the cost makes large-scale brute-force and GPU attacks far slower, while a single login stays fast enough. A value of 10 to 12 is a common choice.

Salt and verification

Bcrypt mixes a random salt into every hash, so the same password produces a different hash each time. That defeats precomputed rainbow tables, and verification still works because the salt is stored inside the hash itself.

To check a password, the verify mode reads the salt and cost out of the stored hash, hashes the candidate the same way, and compares, which is why you only need the hash and the password, not the original salt.

Security note

Hashing and verifying run entirely in your browser, so nothing is uploaded. Even so, avoid pasting real production passwords on a shared computer.

자주 묻는 질문

라운드란 무엇인가요?

비용 계수입니다. 라운드가 하나 늘어날 때마다 해시 계산에 필요한 작업이 두 배가 되어 무차별 대입 공격을 느리게 만듭니다. 10~12가 일반적인 선택입니다.

같은 비밀번호의 해시가 매번 다른 이유는 무엇인가요?

Bcrypt는 모든 해시에 무작위 솔트를 포함하므로 같은 비밀번호도 출력이 다릅니다. 솔트가 해시 내부에 저장되어 있어 검증은 여전히 작동합니다.

사용하기 안전한가요?

해싱은 브라우저에서 완전히 실행되므로 비밀번호가 업로드되지 않습니다. 그래도 공용 컴퓨터에서 실제 비밀번호를 붙여넣지 마세요.

출처

이 도구 임베드하기

이 도구를 직접 운영하는 웹사이트에 추가하세요. 아래 코드를 복사하면 자동으로 최신 상태로 유지됩니다.

<iframe src="https://monu.tools/embed/ko/bcrypt-generator" width="100%" height="640" style="border:1px solid #e5e5e5;border-radius:12px;max-width:680px" loading="lazy" title="Monu Tools"></iframe>

관련 도구