Stax
Tools

パスワード生成

カスタム長と文字セットで強力なランダムパスワードを生成。

16
664

安全なパスワード生成ツールの条件とは

適切な設定の選び方

パスワードのエントロピーを理解する

重要なのはランダム性の出所です。Stax Password Generatorはcrypto.getRandomValues()——ブラウザの暗号論的に安全な擬似乱数生成器(CSPRNG)を使用しています。これはTLSセッションキーの生成にも使われるエントロピーの源泉と同じです。予測不可能で、時刻をシードとせず、再現もできません。

生成されたパスワードはデバイスの外に出ることはありません。API呼び出し、クリップボードの監視、パスワードの実際の値に関するアナリティクスは一切行いません。

エントロピーはパスワードの予測困難さをビット数で表します。1ビット増えるごとに考えられる組み合わせ数は2倍になります。小文字のみの8文字パスワードは約37ビットのエントロピーしかなく、最新のGPUなら1秒以内に解読できます。95文字のプール(すべてのASCII印刷可能文字)から生成した16文字パスワードは約105ビット——現在のハードウェアでは事実上解読不可能です。

  • 一般的なアカウント:16文字、すべての文字セットを有効にする。
  • PINまたは数字コード:数字のみ、6〜8桁。
  • パスフレーズ(暗記用):パスフレーズ生成ツールを使う——4つのランダムな単語は強度が高く、覚えやすい。
  • 8文字上限のレガシーシステム:許可された最大文字数ですべての文字セットを使用する。

よくある質問

Is it safe to generate passwords online?
Yes, when it's done entirely client-side. Stax Password Generator uses the Web Crypto API (crypto.getRandomValues) — the same cryptographically secure random number generator used by browsers for TLS. Your password is never sent to a server, never logged, and never stored.
How long should my password be?
At least 12 characters for most accounts; 16+ for email, banking, and anything you really care about. Length matters more than complexity — a 20-character lowercase-only password is far harder to brute-force than an 8-character one with symbols.
What makes a password strong?
Length (16+ characters), randomness (not based on words or patterns), and uniqueness (different password for every account). Enable uppercase, lowercase, numbers, and symbols for maximum entropy.
Should I include symbols?
Yes, if the site allows it. Symbols dramatically increase the number of possible combinations. Some services restrict which symbols they accept — if a generated password is rejected, just regenerate without symbols.
Where should I store generated passwords?
In a password manager: 1Password, Bitwarden, Dashlane, or your browser's built-in manager. Never in a plain text file or spreadsheet. A good password manager remembers all your unique passwords so you only need to remember one master password.

関連ツール