Strong Random Password 생성기
「Strong Random Password 생성기」는 코드, 데이터 및 QR 작업을 위한 브라우저 도구입니다. 입력과 결과는 일반적으로 이 기기에서 처리되며 가입이 필요하지 않습니다.
사용 방법
사용 방법
- Choose a password length and how many passwords to generate.
- Select the character groups you want and whether to exclude ambiguous characters.
- Generate the passwords, save them in a password manager, and copy the list only when you are ready to use it.
Cryptographic browser randomness
The generator uses crypto.getRandomValues with rejection sampling, so character selection avoids modulo bias. It guarantees at least one character from every enabled group and applies a cryptographic Fisher–Yates shuffle.
Handle the result as a secret
Passwords are generated and displayed only in this browser page, but anything visible on screen can still be copied, captured, or observed. Store each password in a trusted password manager, do not reuse it, and close or clear the page when finished.
자주 묻는 질문
더 알아보기
Are passwords sent to a server?
No. Generation runs in your browser and the page does not submit generated passwords.
What does exclude ambiguous characters remove?
It removes O, 0, I, lowercase l, 1, and the vertical bar to reduce visual confusion.
Can I use one password for several accounts?
No. Generate a separate password for every account and store it in a password manager.