2016-08-26 12:07:09 +01:00
|
|
|
# apg
|
|
|
|
|
|
|
|
> Creates arbitrarily complex random passwords.
|
2021-04-12 07:54:04 +01:00
|
|
|
> More information: <https://manned.org/apg>.
|
2016-08-26 12:07:09 +01:00
|
|
|
|
|
|
|
- Create random passwords (default password length is 8):
|
|
|
|
|
|
|
|
`apg`
|
|
|
|
|
|
|
|
- Create a password with at least 1 symbol (S), 1 number (N), 1 uppercase (C), 1 lowercase (L):
|
|
|
|
|
|
|
|
`apg -M SNCL`
|
|
|
|
|
|
|
|
- Create a password with 16 characters:
|
|
|
|
|
|
|
|
`apg -m {{16}}`
|
|
|
|
|
|
|
|
- Create a password with maximum length of 16:
|
|
|
|
|
|
|
|
`apg -x {{16}}`
|
|
|
|
|
|
|
|
- Create a password that doesn't appear in a dictionary (the dictionary file has to be provided):
|
|
|
|
|
2023-05-22 09:41:00 +01:00
|
|
|
`apg -r {{path/to/dictionary_file}}`
|