Update usage

This commit is contained in:
Frank Denis 2023-01-16 19:15:53 +01:00
parent c33051dec3
commit d2afa89fe7
3 changed files with 23 additions and 24 deletions

View file

@ -1,22 +1,22 @@
.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "MINISIGN" "1" "October 2021" "" ""
.TH "MINISIGN" "1" "January 2023" "" ""
.
.SH "NAME"
\fBminisign\fR \- A dead simple tool to sign files and verify signatures\.
.
.SH "SYNOPSIS"
\fBminisign\fR \-G [\-p pubkey] [\-s seckey]
\fBminisign\fR \-G [\-p pubkey_file] [\-s seckey_file] [\-W]
.
.P
\fBminisign\fR \-S [\-H] [\-x sigfile] [\-s seckey] [\-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
\fBminisign\fR \-V [\-x sigfile] [\-p pubkeyfile | \-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 \-p pubkeyfile
\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\.
@ -48,7 +48,7 @@ File to sign/verify
Combined with \-V, output the file content after verification
.
.TP
\fB\-p <pubkeyfile>\fR
\fB\-p <pubkey_file>\fR
Public key file (default: \./minisign\.pub)
.
.TP
@ -56,11 +56,11 @@ Public key file (default: \./minisign\.pub)
Public key, as a base64 string
.
.TP
\fB\-s <seckey>\fR
\fB\-s <seckey_file>\fR
Secret key file (default: ~/\.minisign/minisign\.key)
.
.TP
\fB\-x <sigfile>\fR
\fB\-x <sig_file>\fR
Signature file (default: <file>\.minisig)
.
.TP

View file

@ -1,18 +1,18 @@
<!---
This man page can be generated using ronn - http://rtomayko.github.com/ronn/
This man page can be generated using ronn - https://rtomayko.github.io/ronn/
-->
minisign(1) -- A dead simple tool to sign files and verify signatures.
======================================================================
## SYNOPSIS
`minisign` -G [-p pubkey] [-s seckey]
`minisign` -G [-p pubkey_file] [-s seckey_file] [-W]
`minisign` -S [-H] [-x sigfile] [-s seckey] [-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 sigfile] [-p pubkeyfile | -P pubkey] [-o] [-q] -m file
`minisign` -V [-x sig_file] [-p pubkey_file | -P pubkey] [-o] [-q] -m file
`minisign` -R -s seckey -p pubkeyfile
`minisign` -R [-s seckey_file] [-W] [-p pubkey_file]
## DESCRIPTION
@ -34,13 +34,13 @@ These options control the actions of `minisign`.
File to sign/verify
* `-o`:
Combined with -V, output the file content after verification
* `-p <pubkeyfile>`:
* `-p <pubkey_file>`:
Public key file (default: ./minisign.pub)
* `-P <pubkey>`:
Public key, as a base64 string
* `-s <seckey>`:
* `-s <seckey_file>`:
Secret key file (default: ~/.minisign/minisign.key)
* `-x <sigfile>`:
* `-x <sig_file>`:
Signature file (default: &lt;file&gt;.minisig)
* `-c <comment>`:
Add a one-line untrusted comment

View file

@ -31,14 +31,13 @@ usage(void)
puts(
"Usage:\n"
#ifndef VERIFY_ONLY
"minisign -G [-f] [-p pubkeyfile] [-s seckeyfile]\n"
"minisign -S [-l] [-x sigfile] [-s seckeyfile] [-c untrusted_comment] [-t trusted_comment] "
"-m "
"file [file ...]\n"
"minisign -G [-f] [-p pubkey_file] [-s seckey_file] [-W]\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 sigfile] [-p pubkeyfile | -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 seckeyfile] [-p pubkeyfile]\n"
"minisign -R [-s seckey_file] [-W] [-p pubkey_file]\n"
#endif
"\n"
#ifndef VERIFY_ONLY
@ -52,10 +51,10 @@ usage(void)
"-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"
"-p <pubkeyfile> public key file (default: ./minisign.pub)\n"
"-p <pubkey_file> public key file (default: ./minisign.pub)\n"
"-P <pubkey> public key, as a base64 string\n"
#ifndef VERIFY_ONLY
"-s <seckeyfile> secret key file (default: ~/.minisign/minisign.key)\n"
"-s <seckey_file> secret key file (default: ~/.minisign/minisign.key)\n"
"-W do not encrypt/decrypt the secret key with a password\n"
#endif
"-x <sigfile> signature file (default: <file>.minisig)\n"