🔐 Password Generator

Cryptographically secure passwords — generated locally in your browser

🔒 画像がデバイスの外に出ることはありません。 すべての処理はWeb Crypto API (crypto.getRandomValues)を使用してブラウザ内でローカルに行われます。アップロード、サーバー、追跡は一切ありません。

特長

  • Cryptographically Secure — Uses the Web Crypto API for truly random generation — not pseudo-random.
  • カスタムizable Rules — Control length, character sets (uppercase, lowercase, numbers, symbols), and exclude ambiguous characters.
  • Strength Meter — See password strength rating and entropy bits to gauge security level.
  • Fully Offline — Passwords are generated locally. Nothing is transmitted or stored.

仕組み

  1. Set your rules — Choose password length and toggle character sets (uppercase, lowercase, numbers, symbols).
  2. 生成 passwords — Click 生成 for one password or 生成 5 for a batch.
  3. Copy and use — Copy the password to your clipboard. Check the strength meter for security assurance.

活用例

  • Create strong passwords for online accounts
  • 生成 API keys and secret tokens for development
  • Bulk-generate temporary passwords for team onboarding

よくある質問

How secure are the generated passwords?

Very secure. We use crypto.getRandomValues() which provides cryptographically strong randomness. A 16-character password with all character sets has over 100 bits of entropy.

What does 'Exclude Ambiguous' do?

It removes characters that look similar: 0/O, 1/l/I. This prevents confusion when reading or typing passwords manually.

Are the passwords stored anywhere?

No. Passwords exist only in your browser session. Once you close the tab, they are gone.

関連ツール