From cdae21b02d22160dc7a1a2644012d294577ce55c Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Sun, 12 Jul 2015 16:21:50 +0200 Subject: [PATCH] New switch: -Q, to display only the trusted comment (after verification) --- src/minisign.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/minisign.c b/src/minisign.c index 57ae6d6..982bc2d 100644 --- a/src/minisign.c +++ b/src/minisign.c @@ -19,9 +19,9 @@ #include "minisign.h" #ifndef VERIFY_ONLY -static const char *getopt_options = "GSVhc:m:P:p:qs:t:vx:"; +static const char *getopt_options = "GSVhc:m:P:p:qQs:t:vx:"; #else -static const char *getopt_options = "Vhm:P:p:qvx:"; +static const char *getopt_options = "Vhm:P:p:qQvx:"; #endif static void usage(void) __attribute__((noreturn)); @@ -53,6 +53,7 @@ usage(void) "-t add a one-line trusted comment\n" #endif "-q quiet mode, suppress output\n" + "-Q pretty quiet mode, only print the trusted comment\n" "-v display version number\n" ); exit(1); @@ -361,6 +362,8 @@ verify(PubkeyStruct *pubkey_struct, const char *message_file, if (quiet == 0) { puts("Signature and comment signature verified"); printf("Trusted comment: %s\n", trusted_comment); + } else if (quiet == 2) { + puts(trusted_comment); } return 0; } @@ -589,6 +592,9 @@ main(int argc, char **argv) case 'q': quiet = 1; break; + case 'Q': + quiet = 2; + break; case 's': sk_file = optarg; break;