Generatore di Password
Crea password sicure e casuali con lunghezza, maiuscole, numeri e simboli personalizzabili. Gratuito online, senza registrazione richiesta.
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.
Linee guida NIST per le password
NIST SP 800-63B (2017, aggiornato 2024) raccomanda un minimo di 8 caratteri per le password scelte dall'utente e nessuna regola di complessità arbitraria (es. richiedere un simbolo e un numero). Invece, il NIST consiglia di verificare le password contro liste di password violate (come Have I Been Pwned) e incoraggiare passphrase più lunghe. La difesa più efficace è la lunghezza — una password casuale di 20+ caratteri generata da questo strumento supera ampiamente qualsiasi requisito di conformità.
Privacy
Passwords are generated 100% in your browser using crypto.getRandomValues(). Nothing is sent to any server.