본문으로 건너뛰기
Redmoon Converters
🌿 건강 & 라이프스타일

비밀번호 강도 & 엔트로피 계산기

비밀번호 엔트로피를 비트 단위로 추정하고, 현대적인 공격 속도에 대한 무차별 대입 저항력을 확인하세요. 문자 풀, 길이, 무작위성을 분석합니다.

완전한 클라이언트 측 처리 — 입력한 비밀번호는 브라우저를 벗어나지 않습니다.
엔트로피
길이 · 문자 집합 자 · 등급
공격자초당 시도 횟수평균 크래킹 소요 시간
문자 클래스포함 여부문자 집합에 추가
계산 원리

엔트로피 = 길이 × log₂(문자 집합 크기). 소문자(+26), 대문자(+26), 숫자(+10), 기호(+33), 유니코드(첫 비-ASCII 집합에 대해 +약 100)를 섞을수록 문자 집합이 커집니다. 크래킹 시간은 탐색 공간의 절반 ÷ 공격자의 시도 속도입니다.

이는 단순 추정치일 뿐입니다. 실제 공격자는 사전 공격과 규칙 기반 공격을 사용하므로, "password123" 같은 흔한 문구는 엔트로피가 "양호"해 보여도 몇 초 만에 뚫립니다. 무작위 단어 4개 이상의 패스프레이즈나 비밀번호 관리자가 생성한 16자 이상의 비밀번호를 사용하세요.

계산 원리

Entropy here is length × log₂(pool size), the standard formula for a password drawn uniformly at random. The pool is assembled by adding a block for each character class the tool detects: 26 for lowercase, 26 for uppercase, 10 for digits, 33 for symbols, 1 for a space, and 100 for any non-ASCII Unicode character. The crack table then takes half the search space, 2^bits ÷ 2, and divides it by each attacker's guess rate.

Length moves the result far more than variety does, because it multiplies while an extra class only nudges a logarithm. The six attacker rows run from 10² guesses per second for a throttled online login up to 10¹⁴ for a nation-state ASIC, with the offline single-GPU row at 10¹⁰ — that middle figure is the realistic threat once a password database leaks. Ratings step from Very weak below 28 bits through Strong at 60 and Excellent at 80.

The uniform-randomness assumption is the big caveat. The formula cannot tell that a predictable string is guessed in seconds while a same-length random one is not, so anything a human chose scores far higher here than it deserves against a dictionary-and-rules attack. Passphrases are mismeasured the other way, since their real entropy comes from words selected rather than letters typed. Nothing leaves the page — the whole calculation runs in your browser.

자주 묻는 질문

How many bits of entropy make a strong password?

This tool labels anything under 28 bits very weak, 36 to 60 fair, 60 to 80 strong and 80 to 128 excellent. For anything that might be cracked offline, 80 bits is the sensible floor; 60 is only adequate where guessing is genuinely rate-limited.

Why does the phrase loaded by default score over 130 bits?

Because the formula only sees 28 characters drawn from a 27-symbol pool of lowercase plus space. Its real strength is the four dictionary words chosen, closer to 44 bits. Any well-known phrase collapses further against an attacker running a wordlist.

Is adding a symbol better than adding two more characters?

Two characters usually wins. Length multiplies the per-character entropy, while a new class only enlarges the pool inside a logarithm — a symbol lifts the pool from 62 to 95, worth roughly 0.6 extra bits per character you already have.

How many guesses per second can a real attacker manage?

It depends entirely on the hash. The offline single-GPU row at 10¹⁰ per second is realistic for a fast hash such as MD5 or NTLM, while a properly configured bcrypt or Argon2 hash drops that rate by six orders of magnitude or more.

Is my password sent anywhere when I type it in?

No. The calculation runs in your browser as you type, and nothing is transmitted or stored. The field is masked by default with a Show button to reveal it. Even so, avoid pasting in a password you are currently using.

다른 이름

password entropy calculatorpassword strength calculatorpassword bits of entropy

관련 도구