mirror of
https://github.com/jedisct1/minisign.git
synced 2025-04-04 11:27:42 +03:00
Document that debatable -R command-line switch
This commit is contained in:
parent
a27bd363b3
commit
c78fe77559
2 changed files with 6 additions and 0 deletions
|
@ -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`:
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue