[PATCH v2 1/4] gpgconf: Make WoT settings configurable by gpgconf.
Damien Goutte-Gattat
dgouttegattat at incenp.org
Wed Jul 19 22:17:27 CEST 2017
* tools/gpgconf-comp.c (gc_options_gpg): Add max-cert-depth,
completes-needed, and marginals-needed options.
* g10/gpg.c (gpgconf_list): Likewise.
--
Some tests to come for the PGP trust model will need to manipulate
these parameters.
Signed-off-by: Damien Goutte-Gattat <dgouttegattat at incenp.org>
---
g10/gpg.c | 3 +++
tools/gpgconf-comp.c | 12 ++++++++++++
2 files changed, 15 insertions(+)
diff --git a/g10/gpg.c b/g10/gpg.c
index 5c60e1d..4dccf72 100644
--- a/g10/gpg.c
+++ b/g10/gpg.c
@@ -1855,6 +1855,9 @@ gpgconf_list (const char *configfile)
es_printf ("compliance:%lu:\"%s:\n", GC_OPT_FLAG_DEFAULT, "gnupg");
es_printf ("default-new-key-algo:%lu:\n", GC_OPT_FLAG_NONE);
es_printf ("trust-model:%lu:\n", GC_OPT_FLAG_NONE);
+ es_printf ("max-cert-depth:%lu:\n", GC_OPT_FLAG_NONE);
+ es_printf ("completes-needed:%lu:\n", GC_OPT_FLAG_NONE);
+ es_printf ("marginals-needed:%lu:\n", GC_OPT_FLAG_NONE);
/* The next one is an info only item and should match the macros at
the top of keygen.c */
diff --git a/tools/gpgconf-comp.c b/tools/gpgconf-comp.c
index a8ecb07..ba7abe0 100644
--- a/tools/gpgconf-comp.c
+++ b/tools/gpgconf-comp.c
@@ -724,6 +724,18 @@ static gc_option_t gc_options_gpg[] =
GC_OPT_FLAG_NONE, GC_LEVEL_INVISIBLE,
NULL, NULL,
GC_ARG_TYPE_STRING, GC_BACKEND_GPG },
+ { "max-cert-depth",
+ GC_OPT_FLAG_NONE, GC_LEVEL_INVISIBLE,
+ NULL, NULL,
+ GC_ARG_TYPE_UINT32, GC_BACKEND_GPG },
+ { "completes-needed",
+ GC_OPT_FLAG_NONE, GC_LEVEL_INVISIBLE,
+ NULL, NULL,
+ GC_ARG_TYPE_UINT32, GC_BACKEND_GPG },
+ { "marginals-needed",
+ GC_OPT_FLAG_NONE, GC_LEVEL_INVISIBLE,
+ NULL, NULL,
+ GC_ARG_TYPE_UINT32, GC_BACKEND_GPG },
{ "Debug",
--
2.9.0
More information about the Gnupg-devel
mailing list