Skip to content

Commit

Permalink
update doc
Browse files Browse the repository at this point in the history
  • Loading branch information
nxadm committed Jan 23, 2021
1 parent 0914182 commit d40fb65
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ that consumes many of the functionalities of the library:

```
$ ./certmin
certmin, 0.5.5. A minimalist certificate utility.
certmin, 0.5.6. A minimalist certificate utility.
See https://github.com/nxadm/certmin for more information.
Usage:
certmin skim cert-location1 [cert-location2...]
[--leaf|--follow] [--no-roots]
[--sort|--rsort] [--keep] [--no-colour]
[--sort|--rsort] [--once] [--keep] [--no-colour]
certmin verify-chain cert-location [cert-location2...]
[--root=ca-file1 --root=ca-file2...]
[--inter=inter-file1 --inter=inter-file2...]
Expand Down Expand Up @@ -55,6 +55,10 @@ Global options (optional):
--inter | -i : intermediate certificate file(s).
--sort | -s : sort the certificates and chains from leaf to root.
--rsort | -z : sort the certificates and chains from root to leaf.
--once | -o : if within a location several certificates share an
intermediate/root, don't show certificates more than
once to visually complete the chain. If "rsort" not
given it enables "sort".
--keep | -k : write the requested certificates and chains to files
as PKCS1 PEM files (converting if necessary).
--no-colour | -c : don't colourise the output.
Expand Down
2 changes: 1 addition & 1 deletion cmd/certmin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ go get github.com/nxadm/certmin/cmd/certmin

```
$ ./certmin
certmin, 0.5.5. A minimalist certificate utility.
certmin, 0.5.6. A minimalist certificate utility.
See https://github.com/nxadm/certmin for more information.
Usage:
Expand Down
2 changes: 1 addition & 1 deletion cmd/certmin/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
)

const (
version = "0.5.5"
version = "0.5.6"
website = "https://github.com/nxadm/certmin"
timeOut = 5 * time.Second
)
Expand Down

0 comments on commit d40fb65

Please sign in to comment.