密码生成器

为路由器后台、Wi-Fi、IP 摄像头或 IoT 设备生成加密学随机密码。长度(8–64)、大写、数字、符号皆可调,全部在浏览器中生成。

通过 crypto.getRandomValues 在本地生成 — 不通过网络发送也不存储。

为什么需要生成器?

Memorable passwords get reused; reused passwords leak. A generator paired with a password manager solves both problems.

常见用例

常见问题

随机性是否具有加密安全性?+

Yes. We use the browser's window.crypto.getRandomValues — the same API used to generate keys for HTTPS and signed cookies. The output is unpredictable and never sent over the network.

是否应包含符号?+

Yes when the system allows them — symbols add entropy and slow down brute-force attacks. Some legacy admin panels reject "$" or "&"; turn symbols off if you hit that.

密码应该多长?+

在线服务的实用下限是 12 个字符。路由器管理员和 Wi-Fi 密钥建议 16+。主密码、root SSH 等高价值账号适合 20+。

工具

安全提示

正在使用默认密码?使用 NordVPN 加密保护您的网络。