mirror of
https://github.com/wneessen/apg-go.git
synced 2024-11-09 15:52:54 +01:00
Fix typographic errors in README.md
This commit rectifies a couple of typographic errors in the README.md file. Notably, there was a typo 'abondoning' which has been corrected to 'abandoning' and, it tidies up punctuation within the sentences. The main focus was to ensure readability and clarity of the documentation.
This commit is contained in:
parent
b76e5ef57d
commit
bdf7fdf7e1
1 changed files with 3 additions and 3 deletions
|
@ -15,11 +15,11 @@ SPDX-License-Identifier: CC0-1.0
|
||||||
_apg-go_ is a simple APG-like password generator written in Go. It tries to replicate the
|
_apg-go_ is a simple APG-like password generator written in Go. It tries to replicate the
|
||||||
functionality of the
|
functionality of the
|
||||||
"[Automated Password Generator](https://web.archive.org/web/20130313042424/http://www.adel.nursat.kz:80/apg)",
|
"[Automated Password Generator](https://web.archive.org/web/20130313042424/http://www.adel.nursat.kz:80/apg)",
|
||||||
which hasn't been maintained since 2003. Since more and more Unix distributions are abondoning the tool, I was
|
which hasn't been maintained since 2003. Since more and more Unix distributions are abandoning the tool, I was
|
||||||
looking for an alternative. FreeBSD for example recommends "security/makepasswd", which is written in Perl
|
looking for an alternative. FreeBSD for example recommends "security/makepasswd", which is written in Perl
|
||||||
but requires a lot of dependency packages and doesn't offer the feature-set/flexibility of APG.
|
but requires a lot of dependency packages and doesn't offer the feature-set/flexibility of APG.
|
||||||
|
|
||||||
Since FIPS-181 (pronounceable passwords) has been withdrawn in 2015, apg-go does not follow this standard. Instead
|
Since FIPS-181 (pronounceable passwords) has been withdrawn in 2015, apg-go does not follow this standard. Instead,
|
||||||
it implements the [Koremutake Syllables System](https://shorl.com/koremutake.php) in its pronounceable password mode.
|
it implements the [Koremutake Syllables System](https://shorl.com/koremutake.php) in its pronounceable password mode.
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
@ -229,7 +229,7 @@ $ ./apg-go -n 1 -C
|
||||||
### Password length
|
### Password length
|
||||||
By default, apg-go will generate a password with a random length between 12 and 20 characters. If you
|
By default, apg-go will generate a password with a random length between 12 and 20 characters. If you
|
||||||
want to be more specific, you can use the `-m` and `-x` parameters to override the defaults. Let's
|
want to be more specific, you can use the `-m` and `-x` parameters to override the defaults. Let's
|
||||||
assume you want a single complex password with a length of exactly 32 characters, you can do so by
|
assume you want a single complex password with a length of exactly 32 characters you can do so by
|
||||||
running:
|
running:
|
||||||
```shell
|
```shell
|
||||||
$ ./apg-go -n 1 -C -m 32 -x 32
|
$ ./apg-go -n 1 -C -m 32 -x 32
|
||||||
|
|
Loading…
Reference in a new issue