Generator Haseł
Twórz bezpieczne, losowe hasła z konfigurowalną długością, wielkimi literami, cyframi i symbolami. Darmowe online, bez rejestracji.
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.
Wytyczne NIST dotyczące haseł
NIST SP 800-63B (2017, aktualizacja 2024) zaleca minimum 8 znaków dla haseł wybieranych przez użytkownika i brak arbitralnych reguł złożoności (np. wymaganie symbolu i cyfry). Zamiast tego NIST radzi sprawdzanie haseł na listach wyciekłych haseł (jak Have I Been Pwned) i zachęcanie do dłuższych fraz haseł. Najskuteczniejszą obroną jest długość — losowe hasło o 20+ znakach wygenerowane przez to narzędzie znacznie przekracza wszelkie wymagania zgodności.
Privacy
Passwords are generated 100% in your browser using crypto.getRandomValues(). Nothing is sent to any server.