Command line passphrase generator written in Go.
The EFF Diceware Wordlists are embedded, with the long wordlist used by default. See the EFF's Deep Dive for more details on the benefits of this word list.
Click to expand
-
If you don't have it already, install the
ca-certificates
packagesudo apt install ca-certificates
-
Add gabe565 apt repository
echo 'deb [trusted=yes] https://apt.gabe565.com /' | sudo tee /etc/apt/sources.list.d/gabe565.list
-
Update apt repositories
sudo apt update
-
Install pwgen-go
sudo apt install pwgen-go
Click to expand
-
If you don't have it already, install the
ca-certificates
packagesudo dnf install ca-certificates
-
Add gabe565 rpm repository to
/etc/yum.repos.d/gabe565.repo
[gabe565] name=gabe565 baseurl=https://rpm.gabe565.com enabled=1 gpgcheck=0
-
Install pwgen-go
sudo dnf install pwgen-go
Click to expand
Install pwgen-go-bin with your AUR helper of choice.
Click to expand
Download and run the latest release binary for your system and architecture.
Run pwgen
to generate a list of random passphrases. All random functions use cryptographically secure (crypto/rand
) random strings.
Predefined profiles can be used with the --profile
(-p
) flag. See pwgen profiles
for a list of defaults.
Alternatively, the template can be directly customized with the --template
(-t
) flag.
To change the number of generated results, pass a different number to the --count
(-c
) flag.
Also see the generated docs.
By default, pwgen will generate passwords with 4 words from the EFF Long Wordlist and a random number:
$ pwgen
Pebbly1-Destitute-Shelve-Renter
Mushiness-Possibly0-Trustee-Outfit
Trimness-Freebase-Spotless-Manmade2
Recall7-Uncrushed-Agreeing-Crepe
Tavern-Moustache1-Scrubber-Mashed
Lyrically2-Comic-Imitate-Victory
Idiom-Jockey-Subheader6-Scallop
Blot-Sympathy-Nurture-Spotter5
Womanhood6-Capsize-Zigzagged-Siesta
Unwomanly-Unwashed-Urchin-Empty1
Other profiles can be used with the --profile
(-p
) flag:
$ pwgen --count 1 -p alphanum:16
cFAutu4OizPQ0d3N
$ pwgen --count 1 -p words:5
tinker coagulant bundle gave deviator
$ pwgen --count 1 -p pin:6
771283
Or templates can be used directly:
$ pwgen --count 1 -t '{{ binary 16 | b64enc }}'
kENvfNLHw/GcwID3TGEIgg==
Most flags have shell completions available, for example when choosing a profile, try pwgen -p <TAB><TAB>
.
A configuration file will be generated the first time pwgen-go is run. Depending on your operating system, the file will be available at:
- Windows:
%AppData%\pwgen-go\config.toml
- macOS:
~/Library/Application Support/pwgen-go/config.toml
- Linux:
~/.config/pwgen-go/config.toml
An example configuration is also available at config_example.toml
.
Templated passphrases are generated using Go's text/template package.
All Sprig functions are available, plus some extras documented here.