mirror of
https://codeberg.org/scip/pcp.git
synced 2025-12-17 12:00:56 +01:00
fixed invalid usage about -c option (doesn't have a file parameter anymore)
This commit is contained in:
10
src/usage.h
10
src/usage.h
@@ -3,9 +3,9 @@
|
|||||||
#define PCP_HELP "\n" \
|
#define PCP_HELP "\n" \
|
||||||
"Usage: pcp1 [ --help | --version ]\n" \
|
"Usage: pcp1 [ --help | --version ]\n" \
|
||||||
" [ --keygen | --listkeys | --remove-key | --edit-key ]\n" \
|
" [ --keygen | --listkeys | --remove-key | --edit-key ]\n" \
|
||||||
" [ --export-public | --export-secret | --import-public | --import-secret ]\n" \
|
" [ --export-public | --export-secret | --import-public | --import-secret ]\n" \
|
||||||
" [ --encrypt | --decrypt ]\n" \
|
" [ --encrypt | --decrypt ]\n" \
|
||||||
" [ --sign | --check-signature ]\n" \
|
" [ --sign | --check-signature ]\n" \
|
||||||
"\n" \
|
"\n" \
|
||||||
"General Options:\n" \
|
"General Options:\n" \
|
||||||
"-h --help Print this help message.\n" \
|
"-h --help Print this help message.\n" \
|
||||||
@@ -37,8 +37,8 @@
|
|||||||
"\n" \
|
"\n" \
|
||||||
"Signature Options:\n" \
|
"Signature Options:\n" \
|
||||||
"-g --sign Create a signature of a file.\n" \
|
"-g --sign Create a signature of a file.\n" \
|
||||||
"-c --check-signature <file> Verify a detached signature in file <file>.\n" \
|
"-c --check-signature Verify a signature of a file.\n" \
|
||||||
"-f --sigfile <file> Write a detached signature file.\n" \
|
"-f --sigfile <file> Write or check a detached signature file.\n" \
|
||||||
"\n" \
|
"\n" \
|
||||||
"Encoding Options:\n" \
|
"Encoding Options:\n" \
|
||||||
"-z --z85-encode Armor with Z85 encoding.\n" \
|
"-z --z85-encode Armor with Z85 encoding.\n" \
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
|
|
||||||
Usage: pcp1 [ --help | --version ]
|
Usage: pcp1 [ --help | --version ]
|
||||||
[ --keygen | --listkeys | --remove-key | --edit-key ]
|
[ --keygen | --listkeys | --remove-key | --edit-key ]
|
||||||
[ --export-public | --export-secret | --import-public | --import-secret ]
|
[ --export-public | --export-secret | --import-public | --import-secret ]
|
||||||
[ --encrypt | --decrypt ]
|
[ --encrypt | --decrypt ]
|
||||||
[ --sign | --check-signature ]
|
[ --sign | --check-signature ]
|
||||||
|
|
||||||
General Options:
|
General Options:
|
||||||
-h --help Print this help message.
|
-h --help Print this help message.
|
||||||
@@ -35,8 +35,8 @@ Encryption Options:
|
|||||||
|
|
||||||
Signature Options:
|
Signature Options:
|
||||||
-g --sign Create a signature of a file.
|
-g --sign Create a signature of a file.
|
||||||
-c --check-signature <file> Verify a detached signature in file <file>.
|
-c --check-signature Verify a signature of a file.
|
||||||
-f --sigfile <file> Write a detached signature file.
|
-f --sigfile <file> Write or check a detached signature file.
|
||||||
|
|
||||||
Encoding Options:
|
Encoding Options:
|
||||||
-z --z85-encode Armor with Z85 encoding.
|
-z --z85-encode Armor with Z85 encoding.
|
||||||
|
|||||||
Reference in New Issue
Block a user