blob: a1815a9d6718f57301d96e7a8deb14b1762bf89f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# passphrasegen
A passphrase generator written in Go
## Usage
Install with by running `go install`, or build and run by running `go build`.
Generate a passphrase by running `passphrasegen`.
Optional arguments:
* -w number: number of words to use in the passphrase. Defaults to 4.
* Path to words file. Defaults to `/usr/share/dict/words`.
### Example
`passwordgen -w 5 /usr/share/dict/american-english`
|