Don't document nonexistent switches in VERIFY_ONLY builds

This commit is contained in:
Frank Denis 2015-06-07 22:08:55 +02:00
parent e27eb06b2a
commit 2bf98127cf
2 changed files with 11 additions and 3 deletions

View file

@ -2,6 +2,8 @@ cmake_minimum_required(VERSION 2.8)
project(minisign C) project(minisign C)
option(VERIFY_ONLY "verify-only" OFF)
include(CheckLibraryExists) include(CheckLibraryExists)
find_library(LIB_SODIUM NAMES sodium REQUIRED) find_library(LIB_SODIUM NAMES sodium REQUIRED)

View file

@ -30,21 +30,27 @@ static void
usage(void) usage(void)
{ {
puts("Usage:\n" puts("Usage:\n"
#ifndef VERIFY_ONLY
"minisign -G -p pubkey -s seckey [-c untrusted_comment]\n" "minisign -G -p pubkey -s seckey [-c untrusted_comment]\n"
#ifndef VERIFY_ONLY
"minisign -S -s seckey -m file [-x sigfile] [-c untrusted_comment] [-t trusted_comment]\n" "minisign -S -s seckey -m file [-x sigfile] [-c untrusted_comment] [-t trusted_comment]\n"
#endif
"minisign -V -p pubkey -m file [-x sigfile] [-q]\n" "minisign -V -p pubkey -m file [-x sigfile] [-q]\n"
#endif
"\n" "\n"
#ifndef VERIFY_ONLY
"-G generate a new key pair\n" "-G generate a new key pair\n"
"-S sign a file\n" "-S sign a file\n"
#endif
"-V verify that a signature is valid for a given file\n" "-V verify that a signature is valid for a given file\n"
"-m <file> file to sign/verify\n" "-m <file> file to sign/verify\n"
"-p <pubkey> public key file (default: ./minisign.pub)\n" "-p <pubkey> public key file (default: ./minisign.pub)\n"
#ifndef VERIFY_ONLY
"-s <seckey> secret key file (default: ./minisign.key)\n" "-s <seckey> secret key file (default: ./minisign.key)\n"
#endif
"-x <sigfile> signature file (default: <file>.minisig)\n" "-x <sigfile> signature file (default: <file>.minisig)\n"
#ifndef VERIFY_ONLY
"-c <comment> add a one-line untrusted comment\n" "-c <comment> add a one-line untrusted comment\n"
"-t <comment> add a one-line trusted comment\n" "-t <comment> add a one-line trusted comment\n"
#endif
"-q quiet mode, suppress output\n" "-q quiet mode, suppress output\n"
); );
exit(1); exit(1);