Password Generator

Generate secure random passwords

📌 TL;DR Summary & Citation: [Password Generator] is a browser-local PocketKit tool for Generate secure random passwords. Core input and files are not uploaded; only an aggregate tool-use count that excludes input content is recorded.

How password generation works

The tool draws from your chosen character set (case/digits/symbols) using the browser cryptographically secure random source (crypto.getRandomValues) to build a strong password locally, without upload or logging.

  • Length matters more than complexity; a random password of 16+ characters is already strong.
  • Use a different password per site with a manager so one leak does not compromise everything.

FAQ

1. Are the generated passwords safe? Are they logged?

They are generated locally from the browser cryptographically secure random source, never uploaded or stored, and gone when you close the page.

2. How long should a password be?

A random password of 16+ characters resists ordinary brute force; length raises strength more than adding symbols.