mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-03 12:11:33 +01:00
sm: Silence some output on --quiet
* sm/encrypt.c (gpgsm_encrypt): Take care of --quiet. * sm/gpgsm.c: Include minip12.h. (set_debug): Call p12_set_verbosity. * sm/import.c (parse_p12): Dump keygrip only in debug mode. * sm/minip12.c (opt_verbose, p12_set_verbosity): New. (parse_bag_encrypted_data): Print info messages only in verbose mode. -- GnuPG-bug-id: 4757
This commit is contained in:
parent
41979ed730
commit
bcdbf0fcf3
@ -564,6 +564,7 @@ gpgsm_encrypt (ctrl_t ctrl, certlist_t recplist, int data_fd, estream_t out_fp)
|
||||
goto leave;
|
||||
}
|
||||
audit_log (ctrl->audit, AUDIT_ENCRYPTION_DONE);
|
||||
if (!opt.quiet)
|
||||
log_info ("encrypted data created\n");
|
||||
|
||||
leave:
|
||||
|
@ -45,6 +45,7 @@
|
||||
#include "../common/asshelp.h"
|
||||
#include "../common/init.h"
|
||||
#include "../common/compliance.h"
|
||||
#include "minip12.h"
|
||||
|
||||
|
||||
#ifndef O_BINARY
|
||||
@ -731,6 +732,10 @@ set_debug (void)
|
||||
|
||||
if (opt.debug)
|
||||
parse_debug_flag (NULL, &opt.debug, debug_flags);
|
||||
|
||||
/* minip12.c may be used outside of GnuPG, thus we don't have the
|
||||
* opt structure over there. */
|
||||
p12_set_verbosity (opt.verbose);
|
||||
}
|
||||
|
||||
|
||||
|
@ -836,6 +836,7 @@ parse_p12 (ctrl_t ctrl, ksba_reader_t reader, struct stats_s *stats)
|
||||
log_error ("can't calculate keygrip\n");
|
||||
goto leave;
|
||||
}
|
||||
if (DBG_X509)
|
||||
log_printhex (grip, 20, "keygrip=");
|
||||
|
||||
/* Convert to canonical encoding using a function which pads it to a
|
||||
|
13
sm/minip12.c
13
sm/minip12.c
@ -176,6 +176,16 @@ struct tag_info
|
||||
};
|
||||
|
||||
|
||||
static int opt_verbose;
|
||||
|
||||
|
||||
void
|
||||
p12_set_verbosity (int verbose)
|
||||
{
|
||||
opt_verbose = verbose;
|
||||
}
|
||||
|
||||
|
||||
/* Parse the buffer at the address BUFFER which is of SIZE and return
|
||||
the tag and the length part from the TLV triplet. Update BUFFER
|
||||
and SIZE on success. Checks that the encoded length does not
|
||||
@ -869,6 +879,7 @@ parse_bag_encrypted_data (const unsigned char *buffer, size_t length,
|
||||
else
|
||||
goto bailout;
|
||||
|
||||
if (opt_verbose)
|
||||
log_info ("%lu bytes of %s encrypted text\n",ti.length,
|
||||
is_pbes2?"AES128":is_3des?"3DES":"RC2");
|
||||
|
||||
@ -967,6 +978,7 @@ parse_bag_encrypted_data (const unsigned char *buffer, size_t length,
|
||||
{
|
||||
int len;
|
||||
|
||||
if (opt_verbose)
|
||||
log_info ("processing simple keyBag\n");
|
||||
|
||||
/* Fixme: This code is duplicated from parse_bag_data. */
|
||||
@ -1050,6 +1062,7 @@ parse_bag_encrypted_data (const unsigned char *buffer, size_t length,
|
||||
}
|
||||
else
|
||||
{
|
||||
if (opt_verbose)
|
||||
log_info ("processing certBag\n");
|
||||
if (parse_tag (&p, &n, &ti))
|
||||
goto bailout;
|
||||
|
@ -22,6 +22,8 @@
|
||||
|
||||
#include <gcrypt.h>
|
||||
|
||||
void p12_set_verbosity (int verbose);
|
||||
|
||||
gcry_mpi_t *p12_parse (const unsigned char *buffer, size_t length,
|
||||
const char *pw,
|
||||
void (*certcb)(void*, const unsigned char*, size_t),
|
||||
|
Loading…
x
Reference in New Issue
Block a user