diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/ChangeLog | 5 | ||||
-rw-r--r-- | tools/gpgconf-comp.c | 8 |
2 files changed, 13 insertions, 0 deletions
diff --git a/tools/ChangeLog b/tools/ChangeLog index 552ef92cd..dd4f12d87 100644 --- a/tools/ChangeLog +++ b/tools/ChangeLog @@ -1,3 +1,8 @@ +2007-08-28 Werner Koch <wk@g10code.com> + + * gpgconf-comp.c <gpg-agent>: Add options --max-passphrase-days + and --enable-passphrase-history. + 2007-08-27 Werner Koch <wk@g10code.com> * gpg-check-pattern.c: New diff --git a/tools/gpgconf-comp.c b/tools/gpgconf-comp.c index 466da32bd..e2c03d4f8 100644 --- a/tools/gpgconf-comp.c +++ b/tools/gpgconf-comp.c @@ -528,6 +528,14 @@ static gc_option_t gc_options_gpg_agent[] = GC_LEVEL_EXPERT, "gnupg", N_("|FILE|check new passphrases against pattern in FILE"), GC_ARG_TYPE_PATHNAME, GC_BACKEND_SCDAEMON }, + { "max-passphrase-days", GC_OPT_FLAG_RUNTIME, + GC_LEVEL_EXPERT, "gnupg", + N_("|N|expire the passphrase after N days"), + GC_ARG_TYPE_UINT32, GC_BACKEND_GPG_AGENT }, + { "enable-passphrases-history", GC_OPT_FLAG_RUNTIME, + GC_LEVEL_EXPERT, "gnupg", + N_("do not allow the reuse of old passphrases"), + GC_ARG_TYPE_NONE, GC_BACKEND_GPG_AGENT }, GC_OPTION_NULL }; |