mirror of
https://github.com/jedisct1/minisign.git
synced 2025-04-04 19:37:48 +03:00
exclude other unneeded code for VERIFY_ONLY (#139)
This commit is contained in:
parent
573988d235
commit
996ea4fee3
1 changed files with 11 additions and 1 deletions
|
@ -289,6 +289,7 @@ pubkey_load(const char *pk_file, const char *pubkey_s)
|
||||||
exit_msg("A public key is required");
|
exit_msg("A public key is required");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef VERIFY_ONLY
|
||||||
static void
|
static void
|
||||||
seckey_compute_chk(unsigned char chk[crypto_generichash_BYTES], const SeckeyStruct *seckey_struct)
|
seckey_compute_chk(unsigned char chk[crypto_generichash_BYTES], const SeckeyStruct *seckey_struct)
|
||||||
{
|
{
|
||||||
|
@ -302,7 +303,6 @@ seckey_compute_chk(unsigned char chk[crypto_generichash_BYTES], const SeckeyStru
|
||||||
crypto_generichash_final(&hs, chk, sizeof seckey_struct->keynum_sk.chk);
|
crypto_generichash_final(&hs, chk, sizeof seckey_struct->keynum_sk.chk);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef VERIFY_ONLY
|
|
||||||
static void
|
static void
|
||||||
decrypt_key(SeckeyStruct *const seckey_struct, unsigned char chk[crypto_generichash_BYTES])
|
decrypt_key(SeckeyStruct *const seckey_struct, unsigned char chk[crypto_generichash_BYTES])
|
||||||
{
|
{
|
||||||
|
@ -831,17 +831,25 @@ main(int argc, char **argv)
|
||||||
#endif
|
#endif
|
||||||
const char *sig_file = NULL;
|
const char *sig_file = NULL;
|
||||||
const char *message_file = NULL;
|
const char *message_file = NULL;
|
||||||
|
#ifndef VERIFY_ONLY
|
||||||
const char *comment = NULL;
|
const char *comment = NULL;
|
||||||
|
#endif
|
||||||
const char *pubkey_s = NULL;
|
const char *pubkey_s = NULL;
|
||||||
|
#ifndef VERIFY_ONLY
|
||||||
const char *trusted_comment = NULL;
|
const char *trusted_comment = NULL;
|
||||||
|
#endif
|
||||||
unsigned char opt_seen[16] = { 0 };
|
unsigned char opt_seen[16] = { 0 };
|
||||||
int opt_flag;
|
int opt_flag;
|
||||||
int quiet = 0;
|
int quiet = 0;
|
||||||
int output = 0;
|
int output = 0;
|
||||||
|
#ifndef VERIFY_ONLY
|
||||||
int force = 0;
|
int force = 0;
|
||||||
|
#endif
|
||||||
int allow_legacy = 1;
|
int allow_legacy = 1;
|
||||||
|
#ifndef VERIFY_ONLY
|
||||||
int sign_legacy = 0;
|
int sign_legacy = 0;
|
||||||
int unencrypted_key = 0;
|
int unencrypted_key = 0;
|
||||||
|
#endif
|
||||||
Action action = ACTION_NONE;
|
Action action = ACTION_NONE;
|
||||||
|
|
||||||
while ((opt_flag = getopt(argc, argv, getopt_options)) != -1) {
|
while ((opt_flag = getopt(argc, argv, getopt_options)) != -1) {
|
||||||
|
@ -891,9 +899,11 @@ main(int argc, char **argv)
|
||||||
case 'H':
|
case 'H':
|
||||||
allow_legacy = 0;
|
allow_legacy = 0;
|
||||||
break;
|
break;
|
||||||
|
#ifndef VERIFY_ONLY
|
||||||
case 'l':
|
case 'l':
|
||||||
sign_legacy = 1;
|
sign_legacy = 1;
|
||||||
break;
|
break;
|
||||||
|
#endif
|
||||||
case 'm':
|
case 'm':
|
||||||
message_file = optarg;
|
message_file = optarg;
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue