ランダムキー生成

APIキー、JWTシークレット、16進数キー、UUIDなどを生成します - クリックしてコピー。

無料ランダムキー & シークレットジェネレーター

新しいサービスを設定しますか?APIキー、JWTシークレット、16進数トークン、その他のランダムな文字列が必要です。Dokallは複数のキー形式を1か所で生成します - クリックしてクリップボードにコピーします。

コマンドラインに頼ることなく、.envファイル、認証フローのテスト、開発認証情報の生成のブートストラップに最適です。

Frequently Asked Questions

What types of keys can I generate?
Dokall generates hex keys, Base64 keys, alphanumeric strings, UUIDs, and JWT-compatible secrets in various lengths. Each format suits different use cases - hex for crypto keys, Base64 for API tokens, UUIDs for unique identifiers.
Are the keys cryptographically secure?
Yes. Keys are generated using crypto.getRandomValues(), which pulls from your operating system's cryptographic random number generator. This is the same source used by security libraries and password managers.
What length should a JWT secret be?
For HS256, use at least 256 bits (32 bytes) of randomness. A 64-character hex string or 44-character Base64 string provides adequate entropy. Longer secrets are better but rarely necessary beyond 512 bits.
Can I generate multiple keys at once?
Yes. Generate batches of keys in your chosen format and length. Click any result to copy it to your clipboard.
Is it safe to generate secrets online?
Dokall generates keys entirely in your browser - nothing is sent to a server. For production secrets, browser-based generation is acceptable when using crypto.getRandomValues(). Avoid generating secrets on untrusted or public computers.