Password Generator
Generate strong, cryptographically random passwords. All generation happens in your browser โ passwords are never transmitted anywhere.
Generate strong, cryptographically random passwords. All generation happens in your browser โ passwords are never transmitted anywhere.
The Oneyfy Password Generator creates cryptographically strong random passwords using your browser's crypto.getRandomValues() API. Passwords are generated entirely on your device and are never stored, logged, or transmitted.
Random bytes are generated using window.crypto.getRandomValues(), which provides cryptographically secure pseudorandom numbers. Characters are selected uniformly from the enabled character set using modular arithmetic with bias rejection to ensure each character is equally likely.
Weak: < 8 characters. Fair: 8โ11 characters with mixed types. Strong: 12โ15 characters. Very Strong: 16+ characters with all character types. For maximum security, use 20+ characters with all options enabled.
crypto.getRandomValues(), which is cryptographically secure. The entropy is sufficient for strong password security when using a long password with multiple character types.