Document that debatable -R command-line switch

This commit is contained in:
Frank Denis 2019-06-01 12:43:20 +02:00
parent a27bd363b3
commit c78fe77559
2 changed files with 6 additions and 0 deletions

View file

@ -9,6 +9,7 @@ minisign(1) -- A dead simple tool to sign files and verify signatures.
`minisign` -G [-p pubkey] [-s seckey]
`minisign` -S [-H] [-x sigfile] [-s seckey] [-c untrusted_comment] [-t trusted_comment] -m file [file ...]
`minisign` -V [-x sigfile] [-p pubkeyfile | -P pubkey] [-o] [-q] -m file
`minisign` -R -s seckey -p pubkeyfile
## DESCRIPTION
@ -48,6 +49,8 @@ These options control the actions of `minisign`.
Quiet mode, suppress output
* `-Q`:
Pretty quiet mode, only print the trusted comment
* `-R`:
Recreate a public key file from a secret key file
* `-f`:
Force. Combined with -G, overwrite a previous key pair
* `-v`:

View file

@ -35,6 +35,9 @@ usage(void)
"minisign -S [-H] [-x sigfile] [-s seckey] [-c untrusted_comment] [-t trusted_comment] -m file [file ...]\n"
#endif
"minisign -V [-x sigfile] [-p pubkeyfile | -P pubkey] [-o] [-q] -m file\n"
#ifndef VERIFY_ONLY
"minisign -R -s seckey -p pubkeyfile\n"
#endif
"\n"
#ifndef VERIFY_ONLY
"-G generate a new key pair\n"