Şifre Üretici
Özelleştirilebilir uzunluk, büyük/küçük harf, rakam ve sembollerle güvenli şifreler oluşturun. Ücretsiz, kayıt gerektirmez, tarayıcıda çalışır.
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 parola kuralları
NIST SP 800-63B (2017, 2024 güncellendi) kullanıcı tarafından seçilen parolalar için minimum 8 karakter önerir ve keyfi karmaşıklık kurallarını (ör. sembol ve rakam zorunluluğu) önermez. Bunun yerine NIST, parolaların Have I Been Pwned gibi sızdırılmış parola listeleriyle kontrol edilmesini ve daha uzun parolaların teşvik edilmesini önerir. En etkili savunma uzunluktur — bu araçla oluşturulan 20+ karakterlik rastgele bir parola, tüm uyumluluk gereksinimlerini fazlasıyla karşılar.
Privacy
Passwords are generated 100% in your browser using crypto.getRandomValues(). Nothing is sent to any server.