Does Toolkit Shelf store generated passwords?
No. Generation happens in your browser, and Toolkit Shelf does not upload or save the generated password.
What makes the random selection suitable for passwords?
The generator uses crypto.getRandomValues and rejection sampling instead of Math.random or biased modulo-only selection.
Why exclude ambiguous characters?
Characters such as I, l, 1, O, 0, and o can be confused when a password is read or typed manually. Excluding them slightly reduces the alphabet but can reduce transcription mistakes.
Does the entropy number guarantee security?
No. It is an approximate search-space estimate. Account security also depends on uniqueness, storage, phishing resistance, rate limiting, multi-factor authentication, and the destination service.
Do utility tools upload my payload?
Use the page notes for each tool. Browser-side utilities can generate outputs locally, but the final file or code may still reveal whatever you encode or share.
Why should I test the generated output?
Scanners, printers, file viewers, apps, and platform previews can behave differently, so test the exact downloaded output before using it publicly.