Cn Password Generator V2 — Cn Password 生成器 V2
v2生成 cryptographically random passwords with customizable character 设置s. Control length, include/exclude character types. Pure Python, no API key required.
运行时依赖
安装命令
点击复制本土化适配说明
Cn Password Generator V2 — Cn Password 生成器 V2 安装说明: 安装命令:["openclaw skills install cn-password-generator-v2"] 该技能用于国内通用相关操作,可能需要相应的平台账号或API密钥
技能文档
Password 生成器 V2
生成 strong, random passwords.
Features Cryptographically 安全 random generation Customizable length (default: 16 characters) Toggle character types: uppercase, lowercase, digits, symbols 生成 multiple passwords at once Pure Python, no external dependencies Character Types Uppercase: A-Z (26 characters) Lowercase: a-z (26 characters) Digits: 0-9 (10 characters) Symbols: !@#$%^& (8 characters) Usage # Default: 16 chars, all types python3 scripts/pwd_gen_v2.py
# 24 chars, no symbols python3 scripts/pwd_gen_v2.py --length 24 --no-symbols
# 5 passwords, 12 chars each python3 scripts/pwd_gen_v2.py --length 12 --count 5
# Letters only (no digits, no symbols) python3 scripts/pwd_gen_v2.py --length 20 --no-digits --no-symbols
Example 输出 { "passwords": [ "Kj8#mNp2$xL9@vQw7", "Rt4&fBc6%Yn3Hs8j" ], "length": 16 }
Security Notes Uses Python's secrets 模块 for cryptographic randomness Suitable for generating passwords, API keys, 令牌s