Reorder commands for clarity

This commit is contained in:
Frank Denis 2023-01-16 19:21:19 +01:00
parent d2afa89fe7
commit d870938ae5
3 changed files with 32 additions and 32 deletions

View file

@ -10,14 +10,14 @@
\fBminisign\fR \-G [\-p pubkey_file] [\-s seckey_file] [\-W]
.
.P
\fBminisign\fR \-R [\-s seckey_file] [\-W] [\-p pubkey_file]
.
.P
\fBminisign\fR \-S [\-H] [\-x sig_file] [\-s seckey_file] [\-W] [\-c untrusted_comment] [\-t trusted_comment] \-m file [file \.\.\.]
.
.P
\fBminisign\fR \-V [\-x sig_file] [\-p pubkey_file | \-P pubkey] [\-o] [\-q] \-m file
.
.P
\fBminisign\fR \-R [\-s seckey_file] [\-W] [\-p pubkey_file]
.
.SH "DESCRIPTION"
\fBMinisign\fR is a dead simple tool to sign files and verify signatures\.
.
@ -32,6 +32,10 @@ These options control the actions of \fBminisign\fR\.
Generate a new key pair
.
.TP
\fB\-R\fR
Recreate a public key file from a secret key file
.
.TP
\fB\-S\fR
Sign files
.
@ -40,6 +44,14 @@ Sign files
Verify that a signature is valid for a given file
.
.TP
\fB\-H\fR
Requires the input to be prehashed
.
.TP
\fB\-l\fR
Sign using the legacy format
.
.TP
\fB\-m <file>\fR
File to sign/verify
.
@ -60,6 +72,10 @@ Public key, as a base64 string
Secret key file (default: ~/\.minisign/minisign\.key)
.
.TP
\fB\-W\fR
Do not encrypt/decrypt the secret key with a password
.
.TP
\fB\-x <sig_file>\fR
Signature file (default: <file>\.minisig)
.
@ -72,26 +88,14 @@ Add a one\-line untrusted comment
Add a one\-line trusted comment
.
.TP
\fB\-l\fR
Sign using the legacy format
.
.TP
\fB\-q\fR
Quiet mode, suppress output
.
.TP
\fB\-H\fR
Requires the input to be prehashed
.
.TP
\fB\-Q\fR
Pretty quiet mode, only print the trusted comment
.
.TP
\fB\-R\fR
Recreate a public key file from a secret key file
.
.TP
\fB\-f\fR
Force\. Combined with \-G, overwrite a previous key pair
.

View file

@ -8,12 +8,12 @@ minisign(1) -- A dead simple tool to sign files and verify signatures.
`minisign` -G [-p pubkey_file] [-s seckey_file] [-W]
`minisign` -R [-s seckey_file] [-W] [-p pubkey_file]
`minisign` -S [-H] [-x sig_file] [-s seckey_file] [-W] [-c untrusted_comment] [-t trusted_comment] -m file [file ...]
`minisign` -V [-x sig_file] [-p pubkey_file | -P pubkey] [-o] [-q] -m file
`minisign` -R [-s seckey_file] [-W] [-p pubkey_file]
## DESCRIPTION
**Minisign** is a dead simple tool to sign files and verify signatures.
@ -26,10 +26,16 @@ These options control the actions of `minisign`.
* `-G`:
Generate a new key pair
* `-R`:
Recreate a public key file from a secret key file
* `-S`:
Sign files
* `-V`:
Verify that a signature is valid for a given file
* `-H`:
Requires the input to be prehashed
* `-l`:
Sign using the legacy format
* `-m <file>`:
File to sign/verify
* `-o`:
@ -40,22 +46,18 @@ These options control the actions of `minisign`.
Public key, as a base64 string
* `-s <seckey_file>`:
Secret key file (default: ~/.minisign/minisign.key)
* `-W`:
Do not encrypt/decrypt the secret key with a password
* `-x <sig_file>`:
Signature file (default: &lt;file&gt;.minisig)
* `-c <comment>`:
Add a one-line untrusted comment
* `-t <comment>`:
Add a one-line trusted comment
* `-l`:
Sign using the legacy format
* `-q`:
Quiet mode, suppress output
* `-H`:
Requires the input to be prehashed
* `-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

@ -32,22 +32,19 @@ usage(void)
"Usage:\n"
#ifndef VERIFY_ONLY
"minisign -G [-f] [-p pubkey_file] [-s seckey_file] [-W]\n"
"minisign -R [-s seckey_file] [-W] [-p pubkey_file]\n"
"minisign -S [-l] [-x sig_file] [-s seckey_file] [-W] [-c untrusted_comment]\n"
" [-t trusted_comment] -m file [file ...]\n"
#endif
"minisign -V [-H] [-x sig_file] [-p pubkey_file | -P pubkey] [-o] [-q] -m file\n"
#ifndef VERIFY_ONLY
"minisign -R [-s seckey_file] [-W] [-p pubkey_file]\n"
#endif
"\n"
#ifndef VERIFY_ONLY
"-G generate a new key pair\n"
#endif
"-H require input to be prehashed\n"
#ifndef VERIFY_ONLY
"-R recreate a public key file from a secret key file\n"
"-S sign files\n"
#endif
"-V verify that a signature is valid for a given file\n"
"-H require input to be prehashed\n"
"-l sign using the legacy format\n"
"-m <file> file to sign/verify\n"
"-o combined with -V, output the file content after verification\n"
@ -64,9 +61,6 @@ usage(void)
#endif
"-q quiet mode, suppress output\n"
"-Q pretty quiet mode, only print the trusted comment\n"
#ifndef VERIFY_ONLY
"-R recreate a public key file from a secret key file\n"
#endif
"-f force. Combined with -G, overwrite a previous key pair\n"
"-v display version number\n");
exit(2);