密码生成器
为路由器后台、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.
常见用例
- 1Set a strong router admin password — replace the factory "admin / admin" or "admin / password" on a TP-Link, Huawei or ZTE router with a 16-character random string the moment you finish setup.
- 2选择强 WPA2/WPA3 Wi-Fi 密钥 — PSK 中 20 个以上随机字符可让现代调制解调器免于字典与预共享密钥暴力破解。
- 3为每个 IoT 设备、IP 摄像头、NAS 或智能插座生成独立密码 — 将生成器与密码管理器配合,使每台设备都有专属凭据。
常见问题
随机性是否具有加密安全性?+
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+。