aboutsummaryrefslogtreecommitdiffstats
path: root/g10/mainproc.c
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2020-03-14 17:04:47 +0000
committerWerner Koch <[email protected]>2020-03-14 17:04:47 +0000
commit6b306f45f4fbe36b90cec4685aabb267a61e283f (patch)
treeb992ac17f33003c835cb0a69be9e3203177531fe /g10/mainproc.c
parentgpg: Make use of the included key block in a signature. (diff)
downloadgnupg-6b306f45f4fbe36b90cec4685aabb267a61e283f.tar.gz
gnupg-6b306f45f4fbe36b90cec4685aabb267a61e283f.zip
gpg: New option --auto-key-import
* g10/gpg.c (opts): New options --auto-key-import, --no-auto-key-import, and --no-include-key-block. (gpgconf_list): Add them. * g10/options.h (opt): Add field flags.auto_key_import. * g10/mainproc.c (check_sig_and_print): Use flag to enable that feature. * tools/gpgconf-comp.c: Give the new options a Basic config level. -- Note that the --no variants of the options are intended for easy disabling at the command line. GnuPG-bug-id: 4856 Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to '')
-rw-r--r--g10/mainproc.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/g10/mainproc.c b/g10/mainproc.c
index ffde748c0..941ffaa76 100644
--- a/g10/mainproc.c
+++ b/g10/mainproc.c
@@ -2012,14 +2012,11 @@ check_sig_and_print (CTX c, kbnode_t node)
rc = do_check_sig (c, node, extrahash, extrahashlen, NULL,
NULL, &is_expkey, &is_revkey, &pk);
- /* If the key is not found but the signaure includes a key bnlock we
- * import that key block and trry again. We keep this key block
- * only if the signature verifies. */
- /* FIXME: Shall we add an option to disable it or use it only if
- * --auto-key-retriueve is set? */
+ /* If the key is not found but the signature includes a key block we
+ * use that key block for verification and on success import it. */
if (gpg_err_code (rc) == GPG_ERR_NO_PUBKEY
- && sig->flags.key_block)
- /* && (opt.keyserver_options.options & KEYSERVER_AUTO_KEY_RETRIEVE)) */
+ && sig->flags.key_block
+ && opt.flags.auto_key_import)
{
PKT_public_key *included_pk;
const byte *kblock;