mirror of
https://github.com/jedisct1/minisign.git
synced 2025-04-04 03:17:41 +03:00
New switch: -Q, to display only the trusted comment (after verification)
This commit is contained in:
parent
b2ece02b38
commit
cdae21b02d
1 changed files with 8 additions and 2 deletions
|
@ -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 <comment> 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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue