File tree Expand file tree Collapse file tree 4 files changed +8
-7
lines changed
Expand file tree Collapse file tree 4 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ set(CPACK_PACKAGE_VENDOR "Frank Denis")
77set (CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_CURRENT_SOURCE_DIR} /README.md" )
88set (CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR} /LICENSE" )
99set (CPACK_PACKAGE_VERSION_MAJOR "0" )
10- set (CPACK_PACKAGE_VERSION_MINOR "7 " )
10+ set (CPACK_PACKAGE_VERSION_MINOR "8 " )
1111set (CPACK_PACKAGE_VERSION_PATCH "0" )
1212set (CPACK_SOURCE_PACKAGE_FILE_NAME "${CMAKE_PROJECT_NAME} -${CPACK_PACKAGE_VERSION_MAJOR} .${CPACK_PACKAGE_VERSION_MINOR} .${CPACK_PACKAGE_VERSION_PATCH} " )
1313set (CPACK_SOURCE_IGNORE_FILES "/build/;minisign.key;minisign.pub;a.out;/.git/;~$;${CPACK_SOURCE_IGNORE_FILES} " )
Original file line number Diff line number Diff line change 22This man page can be generated using ronn - http://rtomayko.github.com/ronn/
33-->
44minisign(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 & lt ; file& gt ;
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
6363The 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
6970Or to include a comment in the signature, that will be verified and displayed when verifying the file:
7071
Original file line number Diff line number Diff 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"
Original file line number Diff line number Diff line change 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
2424typedef struct KeynumSK_ {
2525 unsigned char keynum [KEYNUMBYTES ];
You can’t perform that action at this time.
0 commit comments