strongpass-gen
v1.0.0
Published
Secure password, hash, and key generator CLI
Downloads
103
Maintainers
Readme
strongpass
Secure password, hash, and key generator CLI.
Installation
npm install -g strongpassUsage
Generate Password
strongpass gen [-<count>] [length]Options:
--no-numbers- Exclude numbers--no-symbols- Exclude symbols-u, --uppercase- Uppercase only-o, --only-lowercase- Lowercase only
Examples:
strongpass gen # 1 password, 16 chars
strongpass gen -5 # 5 passwords, 16 chars
strongpass gen 32 # 1 password, 32 chars
strongpass gen -10 64 # 10 passwords, 64 chars
strongpass gen --no-symbols # No special characters
strongpass gen -u -3 20 # 3 uppercase passwords, 20 charsHash Text
strongpass hash "hello world"Options:
-a, --algorithm <type>- Algorithm: 256, 384, 512 (default: 256)
Examples:
strongpass hash "secret" # SHA-256
strongpass hash "secret" -a 512 # SHA-512Generate UUID
strongpass uuidGenerate API Key
strongpass key [length]Examples:
strongpass key # 32 char API key
strongpass key 64 # 64 char API keyLicense
MIT
