An open API service indexing awesome lists of open source software.

https://github.com/everdrone/genpasswd2

iOS Style Strong Password Generator
https://github.com/everdrone/genpasswd2

cli cli-app ios password password-generator python3 safari secure security

Last synced: 5 months ago
JSON representation

iOS Style Strong Password Generator

Awesome Lists containing this project

README

          

# Password generator

## Installation

```sh
pip3 install genpasswd-everdrone
```

## Usage

```
Usage: genpasswd [options]

Options:
-h, --help show this help message and exit
-c SETS, --count=SETS
the count of the strings between separators
-l LENGTH, --str-length=LENGTH
the length of characters between separators
-d NUMS, --digits=NUMS
the amount of digits in the password
-u CAPS, --uppercase=CAPS
the amount of uppercase letters in the password
-s CHAR, --separator=CHAR
the separator character
-n ITER, --number=ITER
executes the command N times
-v, --version print the version number and quit
```

Generate 3 passwords

```
$ genpasswd -n 3
ctwewg-ebvlsl-a0Qqre
gkhspu-4Wmplw-izhcaq
fctbnf-qiggnR-bns5wl
```

Generate a password with 4 sets of 5 characters

```
$ genpasswd -c 4 -l 5
jwvq9-vqejL-yzlmv-egfmb
```

Generate a password with 3 digits and 3 uppercase letters

```
$ genpasswd -d 3 -u 3
ipjsGc-aE5mnm-wd5pM0
```

Generate a password using the underscore separator

```
$ genpasswd -s _
qdtclt_lao3Du_tuvsqu
```