* gpgme.texi (Key Listing Mode): Doc KEYLIST_MODE_VALIDATE.
authorWerner Koch <wk@gnupg.org>
Tue, 17 Feb 2004 15:27:42 +0000 (15:27 +0000)
committerWerner Koch <wk@gnupg.org>
Tue, 17 Feb 2004 15:27:42 +0000 (15:27 +0000)
* gpgme.h: Add GPGME_KEYLIST_MODE_VALIDATE.
* engine-gpgsm.c (gpgsm_keylist): Send this to gpgsm.

TODO
doc/ChangeLog
doc/gpgme.texi
gpgme/ChangeLog
gpgme/engine-gpgsm.c
gpgme/gpgme.h

diff --git a/TODO b/TODO
index bd2eaca25bf6a62456e73bbba4d359ff592d0912..b80bef87edc98cbcd530e2204d1b356afd10ecc0 100644 (file)
--- a/TODO
+++ b/TODO
@@ -144,4 +144,9 @@ Hey Emacs, this is -*- outline -*- mode!
 
 * Build suite
 ** Make sure everything is cleaned correctly (esp. test area).
-** Cofnigure test for gpg and gpgsm version (as a warning).
+** Configure test for gpg and gpgsm version (as a warning).
+
+
+* Error checking 
+** engine-gpgsm, with-validation
+  Add error checking some time after releasing a new gpgsm.
index 0565d7e4d40e359c326283aff338d17e36288416..809cc14dc6a643e60589671bab5a079eeb066c1e 100644 (file)
@@ -1,3 +1,7 @@
+2004-02-17  Werner Koch  <wk@gnupg.org>
+
+       * gpgme.texi (Key Listing Mode): Doc KEYLIST_MODE_VALIDATE.
+
 2004-02-06  Moritz Schulte  <mo@g10code.com>
 
        * gpgme.texi: A couple of small fixes regarding the Largfile
index 4f735c8ee9604b4e8e7e5f0303ba8f7c58287b16..3e5e8989ed51f9409e3f5b4328e09060fe73bfa5 100644 (file)
@@ -1983,6 +1983,14 @@ certificate server.
 @item GPGME_KEYLIST_MODE_SIGS
 The @code{GPGME_KEYLIST_MODE_SIGS} symbol specifies that the key
 signatures should be included in the listed keys.
+
+@item GPGME_KEYLIST_MODE_VALIDATE
+The @code{GPGME_KEYLIST_MODE_VALIDATE} symbol specifies that the
+backend should do key or certificate validation and not just get the
+validity information from an interna cache.  This might be an
+expensive operation and is in general not usefule.  Currently only
+implemented for the S/MIME backend and ignored for other backends.
+
 @end table
 
 At least one of @code{GPGME_KEYLIST_MODE_LOCAL} and
@@ -2348,7 +2356,10 @@ This is true if the key is expired.
 This is true if the key is disabled.
 
 @item unsigned int invalid : 1
-This is true if the key is invalid.
+This is true if the key is invalid. This might have several reasons,
+for a example for the S/MIME backend, it will be set in during key
+listsing if the key could not be validated due to a missing
+certificates or unmatched policies.
 
 @item unsigned int can_encrypt : 1
 This is true if the key (ie one of its subkeys) can be used for
index 065f8cde137f49b1209aff27e3ab25a4205bcab8..2a3488bf6ce281969d4e33a0d526e2eb79f17f72 100644 (file)
@@ -1,3 +1,8 @@
+2004-02-17  Werner Koch  <wk@gnupg.org>
+
+       * gpgme.h: Add GPGME_KEYLIST_MODE_VALIDATE. 
+       * engine-gpgsm.c (gpgsm_keylist): Send this to gpgsm.
+
 2004-02-15  Werner Koch  <wk@gnupg.org>
 
        * memrchr.c (memrchr): Fixed implementation.  Problem pointed out
index 486c745891235022d7b14b7a974dbe7a0524a155..46c8090cf6152b5ca877baf7cfd5d71cba5bd198 100644 (file)
@@ -1,6 +1,6 @@
 /* engine-gpgsm.c - GpgSM engine.
    Copyright (C) 2000 Werner Koch (dd9jn)
-   Copyright (C) 2001, 2002, 2003 g10 Code GmbH
+   Copyright (C) 2001, 2002, 2003, 2004 g10 Code GmbH
  
    This file is part of GPGME.
 
@@ -1226,6 +1226,16 @@ gpgsm_keylist (void *engine, const char *pattern, int secret_only,
   if (err)
     return err;
 
+
+  /* Use the validation mode if required.  We don't check for an error
+     yet because this is a pretty fresh gpgsm features. */
+  gpgsm_assuan_simple_command (gpgsm->assuan_ctx, 
+                               (mode & GPGME_KEYLIST_MODE_VALIDATE)?
+                               "OPTION with-validation=1":
+                               "OPTION with-validation=0" ,
+                               NULL, NULL);
+
+
   /* Length is "LISTSECRETKEYS " + p + '\0'.  */
   line = malloc (15 + strlen (pattern) + 1);
   if (!line)
index 110fad0b019e724a089849873b96765f2462b0d3..4dd72ff23f87ab285a2399c6f828c331f460fe7b 100644 (file)
@@ -1,6 +1,6 @@
 /* gpgme.h - Public interface to GnuPG Made Easy.
    Copyright (C) 2000 Werner Koch (dd9jn)
-   Copyright (C) 2001, 2002, 2003 g10 Code GmbH
+   Copyright (C) 2001, 2002, 2003, 2004 g10 Code GmbH
 
    This file is part of GPGME.
  
@@ -71,7 +71,7 @@ extern "C" {
    AM_PATH_GPGME macro) check that this header matches the installed
    library.  Warning: Do not edit the next line.  configure will do
    that for you!  */
-#define GPGME_VERSION "0.4.4"
+#define GPGME_VERSION "0.4.5-cvs"
 
 \f
 /* Some opaque data types used by GPGME.  */
@@ -698,7 +698,8 @@ typedef enum
   {
     GPGME_KEYLIST_MODE_LOCAL  = 1,
     GPGME_KEYLIST_MODE_EXTERN = 2,
-    GPGME_KEYLIST_MODE_SIGS   = 4
+    GPGME_KEYLIST_MODE_SIGS   = 4,
+    GPGME_KEYLIST_MODE_VALIDATE = 256
   }
 gpgme_keylist_mode_t;