비밀번호 생성기
안전하고 무작위 비밀번호를 맞춤 길이, 대문자, 숫자, 기호로 생성하세요. 무료 온라인 도구, 가입 불필요, 브라우저에서 100% 실행.
Reference
What makes a strong password?
A strong password combines length and character variety. Security is measured in bits of entropy: the longer and more varied the character set, the harder it is to crack by brute force.
Password entropy
Entropy (bits) = length × log₂(charset size). A 16-character password using uppercase, lowercase, numbers and symbols (~90 chars) gives roughly 104 bits of entropy — secure against all practical brute-force attacks.
Best practices
- Use at least 16 characters for sensitive accounts.
- Never reuse passwords across sites.
- Store passwords in a password manager (Bitwarden, 1Password).
- Enable two-factor authentication (2FA) where available.
NIST 비밀번호 가이드라인
NIST SP 800-63B (2017, 2024 업데이트)는 사용자가 선택하는 비밀번호의 최소 8자와 임의적 복잡성 규칙의 폐지(예: 기호와 숫자 요구)를 권장합니다. 대신 NIST는 유출된 비밀번호 목록(Have I Been Pwned 등)과의 대조와 더 긴 패스프레이즈 사용을 권장합니다. 가장 효과적인 방어는 길이입니다 — 이 도구로 생성된 20자 이상의 무작위 비밀번호는 모든 규정 준수 요건을 훨씬 초과합니다.
Privacy
Passwords are generated 100% in your browser using crypto.getRandomValues(). Nothing is sent to any server.