diff --git a/CMakeLists.txt b/CMakeLists.txt index 2bcb07f..5b917e2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,7 @@ set(CPACK_PACKAGE_VENDOR "Frank Denis") set(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_CURRENT_SOURCE_DIR}/README.md") set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/LICENSE") set(CPACK_PACKAGE_VERSION_MAJOR "0") -set(CPACK_PACKAGE_VERSION_MINOR "7") +set(CPACK_PACKAGE_VERSION_MINOR "8") set(CPACK_PACKAGE_VERSION_PATCH "0") set(CPACK_SOURCE_PACKAGE_FILE_NAME "${CMAKE_PROJECT_NAME}-${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}") set(CPACK_SOURCE_IGNORE_FILES "/build/;minisign.key;minisign.pub;a.out;/.git/;~$;${CPACK_SOURCE_IGNORE_FILES}") diff --git a/src/manpage.md b/src/manpage.md index 604b198..c4e1b97 100644 --- a/src/manpage.md +++ b/src/manpage.md @@ -2,12 +2,12 @@ This man page can be generated using ronn - http://rtomayko.github.com/ronn/ --> minisign(1) -- A dead simple tool to sign files and verify signatures. -============================================= +====================================================================== ## SYNOPSIS `minisign` -G [-p pubkey] [-s seckey] -`minisign` -S [-H] [-x sigfile] [-s seckey] [-c untrusted_comment] [-t trusted_comment] -m <file> +`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 ## DESCRIPTION @@ -23,7 +23,7 @@ These options control the actions of `minisign`. * `-G`: Generate a new key pair * `-S`: - Sign a file + Sign files * `-V`: Verify that a signature is valid for a given file * `-m `: @@ -62,9 +62,10 @@ Creating a key pair 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`. -Signing a file +Signing files $ `minisign` -Sm myfile.txt +$ `minisign` -Sm myfile.txt myfile2.txt *.c Or to include a comment in the signature, that will be verified and displayed when verifying the file: diff --git a/src/minisign.c b/src/minisign.c index 44a193a..0e38fb5 100644 --- a/src/minisign.c +++ b/src/minisign.c @@ -38,7 +38,7 @@ usage(void) "\n" #ifndef VERIFY_ONLY "-G generate a new key pair\n" - "-S sign a file\n" + "-S sign files\n" #endif "-V verify that a signature is valid for a given file\n" "-m file to sign/verify\n" diff --git a/src/minisign.h b/src/minisign.h index d2f1fd2..7b472df 100644 --- a/src/minisign.h +++ b/src/minisign.h @@ -19,7 +19,7 @@ #define SIG_DEFAULT_PKFILE "minisign.pub" #define SIG_DEFAULT_SKFILE "minisign.key" #define SIG_SUFFIX ".minisig" -#define VERSION_STRING "minisign 0.7" +#define VERSION_STRING "minisign 0.8" typedef struct KeynumSK_ { unsigned char keynum[KEYNUMBYTES];