Skip to content

Commit

Permalink
v3
Browse files Browse the repository at this point in the history
  • Loading branch information
o-alquimista committed Oct 7, 2023
1 parent 85942b1 commit 97f891d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,22 @@ A random string generator and a passphrase (diceware) generator.
- C compiler (e.g. GNU C Compiler)
- libsodium headers (`libsodium-dev` on Debian)

## Installation and usage
## Installation
```sh
make

# then as root - to install in /usr/local
# then as root, to install in /usr/local
make install
```

## Usage
```sh
passwiz --help

# Generate a 6-word passphrase
passphrase
```

## License
Copyright 2019-2023 Douglas Silva (0x9fd287d56ec107ac)

Expand Down
2 changes: 1 addition & 1 deletion passwiz.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ if [[ $? -ne 0 ]]; then
exit 1;
fi

readonly VERSION_TAG="v2.1.0"
readonly VERSION_TAG="v3.0.0"

# Constraint options
readonly CONSTRAINT_DIGIT=1
Expand Down

0 comments on commit 97f891d

Please sign in to comment.