Skip to content

Multi-language password generator

License

GPL-3.0, GPL-3.0 licenses found

Licenses found

GPL-3.0
LICENSE
GPL-3.0
COPYING.md
Notifications You must be signed in to change notification settings

hexared/pwdge0n

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pwdge0n

A simple password generator written in:

  • POSIX shell
  • Python3

License: GPL v3

Installation

OS X & Linux:

# sh setup.sh

or

$ sudo sh setup.sh

Usage

Usage:

    pwdg [-e | -a] <password_length>

Options:

    -e:     Exclude ambiguous symbols (eg: ' \" \` ~ , ; : . < > { } ( ) [] )
    -a:     Alphanumeric only (uppercase, lowercase and numbers only)

it will output a password containing at least one symbol of each category:

  • lowercase letters
  • uppercase letters
  • symbols

-e option will exclude some ambiguous characters such as:

' " ` ~ , ; : . < > { } [ ] ( )

-a option will exclude symbol characters and will create an alphanumeric password

Warning: The password length must be at least 8 characters.