Command line password generator.

DERFACT Corporation de09d22ffb Add copyright 1 year ago
.gitignore 1e01baf1cf Initial commit 1 year ago
LICENSE 1e01baf1cf Initial commit 1 year ago
README.md 2db3b676e4 Passgen v1.0 1 year ago
passgen.py de09d22ffb Add copyright 1 year ago
usage-examples.png 12ff04ccb8 Usage examples 1 year ago

README.md

DERFACT-passgen

Command line password generator.

Usage

By default, the program generates 10 passwords with a length of 12 characters consisting of numbers and upper and lower case letters.

Syntax

python3 passgen.py -<options> <password_length> <count_of_passwords>

If you do not specify options, the syntax will be look like this:

python3 passgen.py <password_length> <count_of_passwords>

If you do not specify the count, 10 passwords will be generated.

Also the syntax may look like this:

python3 passgen.py -<options> <password_length>

Options

u - use Uppercase letters

n - use numbers

s - use special symbols

Usage examples