Skip to content

Commit 391d51d

Browse files
committed
Update man page, bump version
1 parent 0c265d0 commit 391d51d

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ set(CPACK_PACKAGE_VENDOR "Frank Denis")
77
set(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_CURRENT_SOURCE_DIR}/README.md")
88
set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/LICENSE")
99
set(CPACK_PACKAGE_VERSION_MAJOR "0")
10-
set(CPACK_PACKAGE_VERSION_MINOR "7")
10+
set(CPACK_PACKAGE_VERSION_MINOR "8")
1111
set(CPACK_PACKAGE_VERSION_PATCH "0")
1212
set(CPACK_SOURCE_PACKAGE_FILE_NAME "${CMAKE_PROJECT_NAME}-${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}")
1313
set(CPACK_SOURCE_IGNORE_FILES "/build/;minisign.key;minisign.pub;a.out;/.git/;~$;${CPACK_SOURCE_IGNORE_FILES}")

src/manpage.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
This man page can be generated using ronn - http://rtomayko.github.com/ronn/
33
-->
44
minisign(1) -- A dead simple tool to sign files and verify signatures.
5-
=============================================
5+
======================================================================
66

77
## SYNOPSIS
88

99
`minisign` -G [-p pubkey] [-s seckey]
10-
`minisign` -S [-H] [-x sigfile] [-s seckey] [-c untrusted_comment] [-t trusted_comment] -m <file>
10+
`minisign` -S [-H] [-x sigfile] [-s seckey] [-c untrusted_comment] [-t trusted_comment] -m file [file ...]
1111
`minisign` -V [-x sigfile] [-p pubkeyfile | -P pubkey] [-o] [-q] -m file
1212

1313
## DESCRIPTION
@@ -23,7 +23,7 @@ These options control the actions of `minisign`.
2323
* `-G`:
2424
Generate a new key pair
2525
* `-S`:
26-
Sign a file
26+
Sign files
2727
* `-V`:
2828
Verify that a signature is valid for a given file
2929
* `-m <file>`:
@@ -62,9 +62,10 @@ Creating a key pair
6262

6363
The public key is printed and put into the `minisign.pub` file. The secret key is encrypted and saved as a file named `~/.minisign/minisign.key`.
6464

65-
Signing a file
65+
Signing files
6666

6767
$ `minisign` -Sm myfile.txt
68+
$ `minisign` -Sm myfile.txt myfile2.txt *.c
6869

6970
Or to include a comment in the signature, that will be verified and displayed when verifying the file:
7071

src/minisign.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ usage(void)
3838
"\n"
3939
#ifndef VERIFY_ONLY
4040
"-G generate a new key pair\n"
41-
"-S sign a file\n"
41+
"-S sign files\n"
4242
#endif
4343
"-V verify that a signature is valid for a given file\n"
4444
"-m <file> file to sign/verify\n"

src/minisign.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#define SIG_DEFAULT_PKFILE "minisign.pub"
2020
#define SIG_DEFAULT_SKFILE "minisign.key"
2121
#define SIG_SUFFIX ".minisig"
22-
#define VERSION_STRING "minisign 0.7"
22+
#define VERSION_STRING "minisign 0.8"
2323

2424
typedef struct KeynumSK_ {
2525
unsigned char keynum[KEYNUMBYTES];

0 commit comments

Comments
 (0)