* engine-gpgsm.c (_gpgme_gpgsm_new): Redirect any gpgsm error
authorWerner Koch <wk@gnupg.org>
Fri, 3 May 2002 18:20:06 +0000 (18:20 +0000)
committerWerner Koch <wk@gnupg.org>
Fri, 3 May 2002 18:20:06 +0000 (18:20 +0000)
output to /dev/null.

* verify.c (gpgme_get_sig_key): Set the protocol of the listctx.
* gpgme.c (gpgme_get_protocol): New.

* data.c (gpgme_data_write): Changed type of BUFFER to void*.
(gpgme_data_read): Ditto.

* verify.c (_gpgme_verify_status_handler): Handle TRUST_* status
lines so that a claim can be made without looking up the key.
(gpgme_get_sig_string_attr): New.
(gpgme_get_sig_ulong_attr): New.

* gpgme.h (GpgmeAttr): Added GPGME_ATTR_SIG_STATUS.

* gpgme.h (GpgmeSigStat): Add _GOOD_EXP and _GOOD_EXPKEY.
* verify.c (_gpgme_verify_status_handler, finish_sig): Handle
these new status codes.  Store the expiration time

gpgme/ChangeLog
gpgme/data.c
gpgme/engine-gpgsm.c
gpgme/gpgme.c
gpgme/gpgme.h
gpgme/verify.c

index d22b36177b47b3a6695373dd04a953d88e19040b..9ece8fbfccef1f7e6eaea08e224c3799ea325244 100644 (file)
@@ -1,5 +1,14 @@
 2002-05-03  Werner Koch  <wk@gnupg.org>
 
+       * engine-gpgsm.c (_gpgme_gpgsm_new): Redirect any gpgsm error
+       output to /dev/null.
+
+       * verify.c (gpgme_get_sig_key): Set the protocol of the listctx.
+       * gpgme.c (gpgme_get_protocol): New.
+
+       * data.c (gpgme_data_write): Changed type of BUFFER to void*.
+       (gpgme_data_read): Ditto.
+
        * verify.c (_gpgme_verify_status_handler): Handle TRUST_* status
        lines so that a claim can be made without looking up the key.
        (gpgme_get_sig_string_attr): New. 
index ac827576d03cd95a40d57d9b44881290671bbc9f..fb94f328168e58ef01e24f5fb2cb766143415cb0 100644 (file)
@@ -557,7 +557,7 @@ gpgme_data_rewind (GpgmeData dh)
  * error code GPGME_EOF.
  **/
 GpgmeError
-gpgme_data_read (GpgmeData dh, char *buffer, size_t length, size_t *nread)
+gpgme_data_read (GpgmeData dh, void *buffer, size_t length, size_t *nread)
 {
   size_t nbytes;
 
@@ -679,12 +679,12 @@ _gpgme_data_get_as_string (GpgmeData dh)
  * Return value: 0 on success or an error code
  **/
 GpgmeError
-gpgme_data_write (GpgmeData dh, const char *buffer, size_t length)
+gpgme_data_write (GpgmeData dh, const void *buffer, size_t length)
 {
   if (!dh || !buffer)
     return mk_error (Invalid_Value);
       
-  return _gpgme_data_append (dh, buffer, length );
+  return _gpgme_data_append (dh, (const char *)buffer, length );
 }
 
 
index a4675ac0c019f540b0d453addc9d936662401ac6..7ecbf43d2ca424f7caea44c78a02442c10fb4934 100644 (file)
@@ -300,8 +300,9 @@ _gpgme_gpgsm_new (GpgsmObject *r_gpgsm)
   argv[1] = "--server";
   argv[2] = NULL;
 
-  err = assuan_pipe_connect (&gpgsm->assuan_ctx,
-                            _gpgme_get_gpgsm_path (), argv, child_fds);
+  err = assuan_pipe_connect2 (&gpgsm->assuan_ctx,
+                              _gpgme_get_gpgsm_path (), argv, child_fds,
+                              1 /* dup stderr to /dev/null */);
 
   dft_display = getenv ("DISPLAY");
   if (dft_display)
index 21578caded2ad1fca96506381ab9b1fe161912ea..50546de63e9225cb0a916a792829ba0f97eea981 100644 (file)
@@ -212,6 +212,16 @@ gpgme_set_protocol (GpgmeCtx ctx, GpgmeProtocol protocol)
   return 0;
 }
 
+GpgmeProtocol
+gpgme_get_protocol (GpgmeCtx ctx)
+{
+  if (!ctx)
+    return 0; /* well, this is OpenPGP */
+  if (ctx->use_cms)
+    return GPGME_PROTOCOL_CMS;
+  return GPGME_PROTOCOL_OpenPGP;
+}
+
 
 /**
  * gpgme_set_armor:
index 976eb8ba0e0a3642927130bf027205600f04d4fc..e9453830b8799047ff724a0dc84663f54d369970 100644 (file)
@@ -233,6 +233,9 @@ char *gpgme_get_notation (GpgmeCtx ctx);
 /* Set the protocol to be used by CTX to PROTO.  */
 GpgmeError gpgme_set_protocol (GpgmeCtx ctx, GpgmeProtocol proto);
 
+/* Get the protocol used with CTX */
+GpgmeProtocol gpgme_get_protocol (GpgmeCtx ctx);
+
 /* If YES is non-zero, enable armor mode in CTX, disable it otherwise.  */
 void gpgme_set_armor (GpgmeCtx ctx, int yes);
 
@@ -409,11 +412,11 @@ GpgmeError gpgme_data_rewind (GpgmeData dh);
 /* Read LENGTH bytes from the data object DH and store them in the
    memory starting at BUFFER.  The number of bytes actually read is
    returned in NREAD.  */
-GpgmeError gpgme_data_read (GpgmeData dh, char *buffer,
+GpgmeError gpgme_data_read (GpgmeData dh, void *buffer,
                            size_t length, size_t *nread);
 
 /* Write LENGTH bytes starting from BUFFER into the data object DH.  */
-GpgmeError gpgme_data_write (GpgmeData dh, const char *buffer, size_t length);
+GpgmeError gpgme_data_write (GpgmeData dh, const void *buffer, size_t length);
 
 
 /* Key and trust functions.  */
index 5c6a3f728305cf64e8b70dfc1d982293ea0fbbd4..d00800fab596b404daf6ee007d174985df483cc0 100644 (file)
@@ -553,6 +553,7 @@ gpgme_get_sig_key (GpgmeCtx c, int idx, GpgmeKey *r_key)
       err = gpgme_new (&listctx);
       if (err)
        return err;
+      gpgme_set_protocol (listctx, gpgme_get_protocol (c));
       gpgme_set_keylist_mode (listctx, c->keylist_mode);
       err = gpgme_op_keylist_start (listctx, result->fpr, 0);
       if (!err)