New API to switch to S/MIME. There is no code yet behind it.
authorWerner Koch <wk@gnupg.org>
Mon, 15 Oct 2001 12:19:14 +0000 (12:19 +0000)
committerWerner Koch <wk@gnupg.org>
Mon, 15 Oct 2001 12:19:14 +0000 (12:19 +0000)
THANKS
TODO
configure.in
gpgme/ChangeLog
gpgme/context.h
gpgme/data.c
gpgme/gpgme.c
gpgme/gpgme.h
tests/mkdemodirs

diff --git a/THANKS b/THANKS
index 24bcdb452521a9c368a2f6a45cf67324c4c5c585..48729fdfce86c7ad62f8c64b68c6be0f5e04c607 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -4,6 +4,7 @@ Enno Cramer             uebergeek@web.de
 Jan-Oliver Wagner       jan@intevation.de
 Johannes Poehlmann      jhp@caldera.de
 Jose C. García Sogo     jose@jaimedelamo.eu.org
+Mark Mutz               mutz@kde.org
 Stéphane Corthésy       stephane@sente.ch
 Timo Schulz             twoaday@freakmail.de
 Tommy Reynolds          reynolds@redhat.com
diff --git a/TODO b/TODO
index 0446059c9b978e18bb59c0d0c8250d2834855b9e..f763a0259d15698d3e3a04b98bb2caa6d85ec2c4 100644 (file)
--- a/TODO
+++ b/TODO
@@ -1,7 +1,5 @@
 * Implement posix-sema.c
 
-* Add gpgme_mime_xxx to make handling of MIME/PGP easier
-
 * Allow to use GTK's main loop instead of the select stuff in
   wait.c
 
@@ -10,3 +8,39 @@
 * Should --delete silently delete secret keys or is there a need for
   another flag or a callback?
 
+* GpgmeKey misses GPGME_ATTR_EXPIRE attribute
+
+* Add ATTR to return the number of subkeys or uids.
+
+* Return GPGME_Canceled when appropriate
+
+* Implement decrypt+verify
+
+Bugs reported by Stephane Corthesy:
+> - When asking a GpgmeKey for one of its sub-userIDs (index > 0)  
+> GPGME_ATTR_EMAIL attribute, it returns the name + email, whereas for  
+> the main (index = 0) userID it returns only the email.
+
+> - When returning a GpgmeKey GPGME_ATTR_COMMENT attribute, characters  
+> like ":" are not un-escaped, they are returned as \x3a
+
+> - When asking a GpgmeKey its main userID (index = 0), it returns the  
+> last userID it was asked (can be a sub, or the main).
+
+> BTW, here's another bug: it it not possible to retrieve fingerprints  
+> for subkeys
+
+> In GpgmeRecipients, would it be possible to provide a function which  
+> would return the validity assigned to a name contained in the  
+> GpgmeRecipients instance?
+
+> - There is an inconsistent behaviour: if we pass three times an  
+> invalid (but non empty) passphrase, return code is GPGME_No_Data, but  
+> if we pass three times an empty (and invalid) passphrase, we get  
+> GPGME_No_Passphrase.
+
+> passphrase callback. If I use the same GpgmeContext as the one which  
+> is currently asking for a passphrase, my app crashes: the r_hd in
+> the  
+> callback has become invalid; if I use a brand new one, the callback  
+> is called recursively, when I ask to enumerate keys.
index 65c02a65b496878c7cdf778c2a827cfa7bf25fb3..8e8303342537713df258a156be92ad5eb3540a07 100644 (file)
@@ -24,15 +24,12 @@ AC_REVISION($Revision$)dnl
 AC_INIT(gpgme/gpgme.h)
 AM_CONFIG_HEADER(config.h)
 AM_MAINTAINER_MODE
-#############################################
 # Version numbers (Remember to change them just before a release)
-# 1. No interfaces changed, only implementations (good): Increment REVISION.
-# 2. Interfaces added, none removed (good): Increment CURRENT, increment
-#    AGE, set REVISION to 0.
-# 3. Interfaces removed (BAD, breaks upward compatibility): Increment
-#    CURRENT, set AGE and REVISION to 0.
+#   (Interfaces removed:    CURRENT++, AGE=0, REVISION=0)
+#   (Interfaces added:      CURRENT++, AGE++, REVISION=0)
+#   (No interfaces changed:                   REVISION++)
 AM_INIT_AUTOMAKE(gpgme,0.2.3a)
-# 
+# XXXX new functions
 LIBGPGME_LT_CURRENT=4
 LIBGPGME_LT_AGE=4
 LIBGPGME_LT_REVISION=0
index fceee93ab4a82ea97dc15af98c8fa88ee52fb1bc..34ef166da6417e05e70c9629e4142f73b71315f2 100644 (file)
@@ -1,3 +1,13 @@
+2001-10-15  Werner Koch  <wk@gnupg.org>
+
+       * gpgme.h (GpgmeProtocol): New.
+       * gpgme.c (gpgme_set_protocol): New.
+
+2001-09-26  Werner Koch  <wk@gnupg.org>
+
+       * gpgme.c (gpgme_set_passphrase_cb): Ignore a NULL context.
+       (gpgme_set_progress_cb): Ditto. Suggested by Mark Mutz.
+
 2001-09-17  Werner Koch  <wk@gnupg.org>
 
        * keylist.c (finish_key): Shortcut for no tmp_key.  Changed all
index ad5886ca6214cf4afbc8b146c34b228e233f6a5c..ee3f224a6453ce2a67d064f94bcf338c52f81f33 100644 (file)
@@ -51,6 +51,8 @@ struct gpgme_context_s {
     int initialized;
     int pending;   /* a gpg request is still pending */
 
+    int use_cms;
+
     /* at some points we need to allocate memory but we are not
      * able to handle a malloc problem at that point, so we set this
      * flag to indicate this condition */
index a0c37693b75bbe004e40c9b4a9ac9077e3def3bb..fc27d0287e95f8e153628701183affe657836ef6 100644 (file)
@@ -170,7 +170,7 @@ gpgme_data_new_with_read_cb ( GpgmeData *r_dh,
  * 
  * Create a new data object and initialize it with the content of 
  * the file @file.  If @copy is %True the file is immediately read in
- * adn closed.  @copy of %False is not yet supportted.
+ * and closed.  @copy of %False is not yet supportted.
  * 
  * Return value: An error code or 0 on success. If the error code is
  * %GPGME_File_Error, the OS error code is held in %errno.
index c36a94489fda099dff19d9d1883cd33ba5dd23ab..86c08270be364fd1d1579dfe3a1ffbd592821d55 100644 (file)
@@ -195,6 +195,28 @@ _gpgme_set_op_info (GpgmeCtx c, GpgmeData info)
         c->op_info = info;
 }
 
+GpgmeError
+gpgme_set_protocol (GpgmeCtx c, GpgmeProtocol prot)
+{
+  if (!c)
+    return mk_error (Invalid_Value);
+  
+  switch (prot)
+    {
+    case GPGME_PROTOCOL_OPENPGP:
+      c->use_cms = 0;
+      break;
+    case GPGME_PROTOCOL_CMS:
+      c->use_cms = 1;
+      break;
+    case GPGME_PROTOCOL_AUTO:
+      return mk_error (Not_Implemented);
+    default:
+      return mk_error (Invalid_Value);
+    }
+  
+  return 0;
+}
 
 /**
  * gpgme_set_armor:
@@ -234,7 +256,8 @@ gpgme_get_armor (GpgmeCtx c)
  * @yes: boolean flag whether textmode should be enabled
  * 
  * Enable or disable the use of the special textmode.  Textmode is for example
- * used for MIME (RFC2015) signatures
+ * used for the RFC2015 signatures; note that the updated RFC 3156 mandates 
+ * that the MUA does some preparations so that textmode is not anymore needed.
  **/
 void
 gpgme_set_textmode ( GpgmeCtx c, int yes )
@@ -309,12 +332,15 @@ gpgme_set_keylist_mode ( GpgmeCtx c, int mode )
 void
 gpgme_set_passphrase_cb ( GpgmeCtx c, GpgmePassphraseCb cb, void *cb_value )
 {
-    c->passphrase_cb = cb;
-    c->passphrase_cb_value = cb_value;
+  if (c)
+    {
+      c->passphrase_cb = cb;
+      c->passphrase_cb_value = cb_value;
+    }
 }
 
 /**
- * gpgme_set_pprogress_cb:
+ * gpgme_set_progress_cb:
  * @c: the context 
  * @cb: A callback function
  * @cb_value: The value passed to the callback function
@@ -333,8 +359,11 @@ gpgme_set_passphrase_cb ( GpgmeCtx c, GpgmePassphraseCb cb, void *cb_value )
 void
 gpgme_set_progress_cb ( GpgmeCtx c, GpgmeProgressCb cb, void *cb_value )
 {
-    c->progress_cb = cb;
-    c->progress_cb_value = cb_value;
+  if (c)
+    {
+      c->progress_cb = cb;
+      c->progress_cb_value = cb_value;
+    }
 }
 
 
index 4d89984a9f17fc0f2cc001b84878a7db944a9761..b48ffc3d90d0adf35a4c72e2311a7a1b029685f9 100644 (file)
@@ -44,7 +44,7 @@ extern "C" {
  * let autoconf (using the 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.2.3"
+#define GPGME_VERSION "0.2.3a"
 
 
 
@@ -153,6 +153,12 @@ typedef enum {
 } GpgmeValidity;
 
 
+typedef enum {
+  GPGME_PROTOCOL_OpenPGP = 0, /* default */
+  GPGME_PROTOCOL_CMS = 1,
+  GPGME_PROTOCOL_AUTO = 2
+} GpgmeProtocol;
+
 typedef const char *(*GpgmePassphraseCb)(void*,
                                          const char *desc, void *r_hd);
 typedef void (*GpgmeProgressCb)(void *opaque,
index 28b78352cf41341d0c3a6da861f22792767b152b..7c3bd047151443959f939adea1732fd2ea793136 100755 (executable)
@@ -9,7 +9,7 @@ NAMES='Alpha Bravo Charlie Delta Echo Foxtrot Golf Hotel India
 
 if [ "$1" = "--clean" ]; then
     (for i in $NAMES; do
-       [ -d $i ] && rm -r $i
+       [ -d $i ] && rm -r $i || true
     done) || true
     exit 0
 fi