Add GPGME_KEYLIST_MODE_EPHEMERAL.
authorWerner Koch <wk@gnupg.org>
Wed, 18 Mar 2009 11:19:29 +0000 (11:19 +0000)
committerWerner Koch <wk@gnupg.org>
Wed, 18 Mar 2009 11:19:29 +0000 (11:19 +0000)
trunk/NEWS
trunk/doc/gpgme.texi
trunk/src/ChangeLog
trunk/src/engine-gpgsm.c
trunk/src/gpgme.h.in

index 3999bbb2d9b9ae991932418ccbe7c4a18e41ba52..05d14f11ecd4ae5784f78d8edd77736cff397dac 100644 (file)
@@ -3,6 +3,7 @@ Noteworthy changes in version 1.1.9
 
  * Interface changes relative to the 1.1.7 release:
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ GPGME_KEYLIST_MODE_EPHEMERAL   NEW.
  GPGME_PROTOCOL_ASSUAN          NEW.
  gpgme_assuan_data_cb_t         NEW.
  gpgme_assuan_inquire_cb_t      NEW.
index 5ff92a711247a07799f7a8f64cd72365d72c0236..ae6ede0866d238614706a8a907bf09a29735c031 100644 (file)
@@ -2208,6 +2208,10 @@ signature notations on key signatures should be included in the listed
 keys.  This only works if @code{GPGME_KEYLIST_MODE_SIGS} is also
 enabled.
 
+@item GPGME_KEYLIST_MODE_EPHEMERAL
+The @code{GPGME_KEYLIST_MODE_EPHEMERAL} symbol specifies that keys
+flagged as ephemeral are included in the listing.
+
 @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
index a9b2ed19597a02e48778dbca4f3c087d5310d0bf..307543a11e422fcf4c378a8fa05716b55f7a942b 100644 (file)
@@ -1,3 +1,8 @@
+2009-03-18  Werner Koch  <wk@g10code.com>
+
+       * gpgme.h.in (GPGME_KEYLIST_MODE_EPHEMERAL): New.
+       * engine-gpgsm.c (gpgsm_keylist): Send new option.
+
 2009-03-13  Werner Koch  <wk@g10code.com>
 
        * gpgme-config.in: Make sure locale is set to C.
index 7179b3c4f921726631f84ef898030c68ba41aec5..bdd1ff924d195f08e9ad297223a83487c91ab493 100644 (file)
@@ -1,6 +1,6 @@
 /* engine-gpgsm.c - GpgSM engine.
    Copyright (C) 2000 Werner Koch (dd9jn)
-   Copyright (C) 2001, 2002, 2003, 2004, 2005, 2007 g10 Code GmbH
+   Copyright (C) 2001, 2002, 2003, 2004, 2005, 2007, 2009 g10 Code GmbH
  
    This file is part of GPGME.
 
@@ -1575,13 +1575,20 @@ gpgsm_keylist (void *engine, const char *pattern, int secret_only,
 
   /* Always send key validation because RESET does not reset it.  */
 
-  /* Use the validation mode if required.  We don't check for an error
+  /* Use the validation mode if requested.  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);
+  /* Include the ephemeral keys if requested.  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_EPHEMERAL)?
+                               "OPTION with-ephemeral-keys=1":
+                               "OPTION with-ephemeral-keys=0" ,
+                               NULL, NULL);
 
 
   /* Length is "LISTSECRETKEYS " + p + '\0'.  */
index 2538aaf9866056243dc2e3a422fec341e71b3d11..65823a66b2ff817ab840ad86db3073c1d37d34d7 100644 (file)
@@ -312,6 +312,7 @@ gpgme_protocol_t;
 #define GPGME_KEYLIST_MODE_EXTERN              2
 #define GPGME_KEYLIST_MODE_SIGS                        4
 #define GPGME_KEYLIST_MODE_SIG_NOTATIONS       8
+#define GPGME_KEYLIST_MODE_EPHEMERAL            128
 #define GPGME_KEYLIST_MODE_VALIDATE            256
 
 typedef unsigned int gpgme_keylist_mode_t;