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

View file

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