v2.2.0
What's New?
- Fix: password manager log registration logic, see log registration.
- New: generate password with no symbols, see without symbols.
- New: add custom set to password generate sample, see add set.
- New: generate password from a custom sample, see custom sample.
Fixes
Password manager log registration
Move the log registration form the dblib level to password manager level.
New
Generate password without symbols
In the password manager generate password, you can generate password without symbols using --no-symbols
. Example:
$ xpm pm g 33 --no-symbols
Generate password, add custom set
Now you can add a custom set to the generate password sample, you can use --add-set
to add it. Example:
$ xpm pm g 33 --hex --add-set "$%@"
This will add $%@
to the hex sample and the output may contain the hex sample with the new set ($%@
).
You can use --add-set
with the ASCII sample also.
Generate password from a custom sample
Now you can generate password form a custom sample, you can use --custom
to generate the password from a custom sample.
Example:
$ xpm pm g 33 --custom "abc123#$@!"
This will generate password form the custom sample (abc123#$@!
).