A couple of minor changes and a short README for Gpgcom
authorWerner Koch <wk@gnupg.org>
Tue, 31 Jul 2001 15:21:58 +0000 (15:21 +0000)
committerWerner Koch <wk@gnupg.org>
Tue, 31 Jul 2001 15:21:58 +0000 (15:21 +0000)
18 files changed:
TODO
complus/Makefile.am
complus/README [new file with mode: 0644]
configure.in
gpgme/ChangeLog
gpgme/data.c
gpgme/encrypt.c
gpgme/gpgme.c
gpgme/gpgme.h
gpgme/mkstatus
gpgme/rungpg.c
gpgme/rungpg.h
gpgme/util.c
gpgme/version.c
gpgme/w32-io.c
jnlib/ChangeLog
jnlib/stringhelp.c
jnlib/stringhelp.h

diff --git a/TODO b/TODO
index 7fb09837d8cde71ef3d09fd849090ee2ca76d6a2..7724065b454c5936399e475f6ff6ce3a02c521b8 100644 (file)
--- a/TODO
+++ b/TODO
@@ -5,4 +5,11 @@
 * Allow to use GTK's main loop instead of the select stuff in
   wait.c
 
-* add locking to the key cache?
\ No newline at end of file
+* add locking to the key cache?
+
+* Should --delete silently delete secret keys or is there a need for
+  another flag or a callback?
+
+* There is no status response if we have no usable recipients - must
+  add one to gpg so that gpgme_encrypt does return with an error.
+
index 45c3dc42789a73616efdffc87ac25841600789d1..1965b9ff13111174da65d1a6f9953e3f921b33c7 100644 (file)
@@ -24,7 +24,7 @@
 # system with an install MIDL and run the command
 #   midl /nocpp gpgcom.idl
 # Sorry, there is no other way yet.  
-EXTRA_DIST = gpgcom.idl gpgcom.tlb gpgcom.rc vbtest.html vbtest.vbs
+EXTRA_DIST = gpgcom.idl gpgcom.tlb gpgcom.rc vbtest.html vbtest.vbs README
 
 # No need to install this because we are cross-compiling anyway.
 noinst_PROGRAMS = gpgcom tgpgcom 
diff --git a/complus/README b/complus/README
new file mode 100644 (file)
index 0000000..30fc30d
--- /dev/null
@@ -0,0 +1,72 @@
+          How to install and use the Gpgcom Windows Component
+          ===================================================
+                              2001-07-31
+
+
+Installation should be pretty easy:
+-----------------------------------
+
+  * Get and install the latest GnuPG binary for windows
+    (ftp://ftp.gnupg.org/gcrypt/binary/gnupg-w32-1.0.6.zip)
+  
+  * Check that you have an untampered version of this package by
+    comparing an MD5SUM against the one on the webpage or by checking
+    the signature of the package using "gpg --verify".  See the
+    webpacge for details.
+
+  * Because you are reading this file, you probably have already
+    unpacked it distribution using a unzip utility :-). You should
+    find these files:
+
+       README      - This file
+       gpgcom.exe  - The Gpgcom server
+       vbtest.html - A Test webpage 
+       vbtest.vbs  - A VB script to be used with the cscript utility
+
+   * If you are updating Gpgcom, run the old Gpgcom like this:
+
+       c:\gnupg\gpgcom -UnregServer
+
+     (Replace c:\gnupg with the actually used path)
+
+   * Copy the file gpgcom.exe to a some location. C:\gnupg seems to be
+     a good choice. 
+
+   * Register the component using this command:
+
+      c:\gnupg\gpgcom -RegServer
+
+   * Ready
+
+Testing the installation:
+-------------------------
+
+  * Make sure that you have a working GnuPG (gpg.exe) and that at least
+    one key is installed.
+
+  * Edit the vbtest.vbs script and replace "alice" in the line
+
+      gpg.AddRecipient "alice"
+
+   with a keyID or user name you have in your key ring.
+
+  * Run the test script:
+
+      cscript vbtest.vbs
+
+    and you should see a valid MIME message with the encrypted text.
+
+    
+Using Gpgcom
+------------ 
+
+Gpgcom currently support only encryption but will be extended to the
+full range of operations GnuPG provides. The 2 examples should goive
+yopu a hint on how to use it.  We suggest that you always set armor to
+true, so that the returned text is a string.  IF you don't use armor,
+the "ciphertext" property will return an array with the binary
+message.
+
+
+
+
index 0bf7855b4f2e7ee983e03ebf151cba6d054ed6b9..e2714f0dfeea9fdc8fee8e9ca90d51ac0dca6edb 100644 (file)
@@ -32,6 +32,7 @@ AM_MAINTAINER_MODE
 # 3. Interfaces removed (BAD, breaks upward compatibility): Increment
 #    CURRENT, set AGE and REVISION to 0.
 AM_INIT_AUTOMAKE(gpgme,0.2.2a)
+# --> New functions introduced <----
 LIBGPGME_LT_CURRENT=3
 LIBGPGME_LT_AGE=3
 LIBGPGME_LT_REVISION=1
@@ -178,7 +179,6 @@ echo "
 
         GPG version: min. $NEED_GPG_VERSION
        GPG path:    $GPG
-       Component:   $component_system
 "
 
 
index 1c5261bb38ae4f10afdaf74c3c89ed85c98820b9..8ca3caa014b1428143a78947bc57c8c8a4555db5 100644 (file)
@@ -1,3 +1,30 @@
+2001-07-31  Werner Koch  <wk@gnupg.org>
+
+       * encrypt.c (gpgme_op_encrypt): Hack to detect no valid recipients.
+
+2001-07-30  Werner Koch  <wk@gnupg.org>
+
+       * gpgme.c (gpgme_get_armor,gpgme_get_texmode): New.
+
+       * rungpg.c (build_argv): Disable armor comments
+       * w32-io.c (build_commandline): Need to add quotes here
+
+2001-07-24  Werner Koch  <wk@gnupg.org>
+
+       * data.c (gpgme_data_read): Add a a way to return the available bytes.
+
+2001-07-23  Werner Koch  <wk@gnupg.org>
+
+       * util.c: Removed stpcpy() because we use the version from jnlib.
+
+2001-07-19  Werner Koch  <wk@gnupg.org>
+
+       * mkstatus: Define the collating sequence for sort.
+
+2001-06-26  Werner Koch  <wk@gnupg.org>
+
+       * rungpg.h: Add STATUS_UNEXPECTED as suggested by Timo.
+
 2001-06-15  Werner Koch  <wk@gnupg.org>
 
        * keylist.c (set_userid_flags): Fixed the assigned values. Kudos
index f234c50ff292b5b728877f1ad059c8de2fda6b28..b4cde8e5432d0de8f786a60fdd8652f0ca2fd75d 100644 (file)
@@ -439,6 +439,11 @@ gpgme_data_rewind ( GpgmeData dh )
  * are copied and the actual number of bytes are returned in @nread.
  * If there are no more bytes available %GPGME_EOF is returned and @nread
  * is set to 0.
+ *
+ * With a @buffer of NULL, the function does only return the number of
+ * bytes available and does not move the read pointer.  This does only
+ * work for certain data types, all other will respnd with an
+ * %GPGME_Invalid_Type.
  * 
  * Return value: An errorcode or 0 on success, EOF is indcated by the
  * error code GPGME_EOF.
@@ -456,13 +461,22 @@ gpgme_data_read ( GpgmeData dh, char *buffer, size_t length, size_t *nread )
             *nread = 0;
             return mk_error(EOF);
         }
-        if (nbytes > length)
-            nbytes = length;
-        memcpy ( buffer, dh->data + dh->readpos, nbytes );
-        *nread = nbytes;
-        dh->readpos += nbytes;
+        if (!buffer) {
+            *nread = nbytes;
+        }
+        else {
+            if (nbytes > length)
+                nbytes = length;
+            memcpy ( buffer, dh->data + dh->readpos, nbytes );
+            *nread = nbytes;
+            dh->readpos += nbytes;
+        }
     }
     else if (dh->type == GPGME_DATA_TYPE_CB) {
+        if (!buffer) {
+            *nread = 0;
+            return mk_error (Invalid_Type);
+        }
         nbytes = dh->len - dh->readpos;
         if ( nbytes ) {
             /* we have unread data - return this */
index 3fe60a62625bdd371590dc4a11569d92f879ec58..bff4153d40e3e8ac611bdbd21dd35c9c20a17dbd 100644 (file)
@@ -70,7 +70,7 @@ gpgme_op_encrypt_start ( GpgmeCtx c, GpgmeRecipients recp,
     for ( i=0; i < c->verbosity; i++ )
         _gpgme_gpg_add_arg ( c->gpg, "--verbose" );
     /* If we know that all recipients are valid (full or ultimate trust)
-     * we can pass suppress further checks */
+     * we can suppress further checks */
     if ( _gpgme_recipients_all_valid (recp) )
         _gpgme_gpg_add_arg ( c->gpg, "--always-trust" );
     
@@ -127,6 +127,12 @@ gpgme_op_encrypt ( GpgmeCtx c, GpgmeRecipients recp,
     if ( !rc ) {
         gpgme_wait (c, 1);
         c->pending = 0;
+        /* FIXME: gpg does not return status info for invalid
+         * recipients, so we simply check whether we got any output at
+         * all and if not assume that we don't have valid recipients
+         * */
+        if (gpgme_data_get_type (out) == GPGME_DATA_TYPE_NONE)
+            rc = mk_error (No_Recipients);
     }
     return rc;
 }
index 1c6ffae51cc2242febd992b211578b915a6571f3..b473feb60356f35478176aa747521ff1ad8f8b73 100644 (file)
@@ -152,6 +152,23 @@ gpgme_set_armor ( GpgmeCtx c, int yes )
     c->use_armor = yes;
 }
 
+
+/**
+ * gpgme_get_armor:
+ * @c: the context
+ * 
+ * Return the state of the armor flag which can be changed using
+ * gpgme_set_armor().
+ * 
+ * Return value: Boolean whether armor mode is to be used.
+ **/
+int 
+gpgme_get_armor (GpgmeCtx c)
+{
+    return c && c->use_armor;
+}
+
+
 /**
  * gpgme_set_textmode:
  * @c: the context 
@@ -168,6 +185,23 @@ gpgme_set_textmode ( GpgmeCtx c, int yes )
     c->use_textmode = yes;
 }
 
+/**
+ * gpgme_get_textmode:
+ * @c: the context
+ * 
+ * Return the state of the textmode flag which can be changed using
+ * gpgme_set_textmode().
+ * 
+ * Return value: Boolean whether textmode is to be used.
+ **/
+int 
+gpgme_get_textmode (GpgmeCtx c)
+{
+    return c && c->use_textmode;
+}
+
+
+
 /**
  * gpgme_set_keylist_mode:
  * @c: the context
index 0f04b4b37af91ba96edc6b5524fc768ed8f91f32..d4082d2f1018d27424e771e2e43f3013c6f79e13 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.2"
+#define GPGME_VERSION "0.2.2a"
 
 
 
@@ -168,7 +168,9 @@ GpgmeCtx   gpgme_wait (GpgmeCtx c, int hang);
 
 char *gpgme_get_notation (GpgmeCtx c);
 void gpgme_set_armor (GpgmeCtx c, int yes);
+int  gpgme_get_armor (GpgmeCtx c);
 void gpgme_set_textmode (GpgmeCtx c, int yes);
+int  gpgme_get_textmode (GpgmeCtx c);
 void gpgme_set_keylist_mode ( GpgmeCtx c, int mode );
 void gpgme_set_passphrase_cb (GpgmeCtx c,
                               GpgmePassphraseCb cb, void *cb_value);
index 150313d1d8d7924c1a94ff13af941ff86c0556b6..08bed6416ea6308486d58a6206fef03c8f5e14b8 100755 (executable)
 # along with this program; if not, write to the Free Software
 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
 
+# resetting collate is important, so that the bsearch works properly
+LC_ALL=C
+LC_COLLATE=C
+export LC_ALL LC_COLLATE
+
 cat <<EOF
 /* Generated automatically by mkstatus */
 /* Do not edit! */
index 708b2781857ad5e70c256041bb8c0fdf10f0877f..7fb90347e9c7bd30f81d1e57b89a6b493701e020 100644 (file)
@@ -606,6 +606,7 @@ build_argv ( GpgObject gpg )
         argc++;
     if (!gpg->cmd.used)
         argc++;
+    argc += 2; /* --comment */
 
     argv = xtrycalloc ( argc+1, sizeof *argv );
     if (!argv)
@@ -651,6 +652,20 @@ build_argv ( GpgObject gpg )
         }
         argc++;
     }
+    argv[argc] = xtrystrdup ( "--comment" );
+    if (!argv[argc]) {
+        xfree (fd_data_map);
+        free_argv (argv);
+        return mk_error (Out_Of_Core);
+    }
+    argc++;
+    argv[argc] = xtrystrdup ( "" );
+    if (!argv[argc]) {
+        xfree (fd_data_map);
+        free_argv (argv);
+        return mk_error (Out_Of_Core);
+    }
+    argc++;
     for ( a=gpg->arglist; a; a = a->next ) {
         if ( a->data ) {
             switch ( _gpgme_data_get_mode (a->data) ) {
index 2895a83a81cd468c8f38b492603a7c76113fa152..6323d5913b1980d5af32c714f6d8450e532bc1f7 100644 (file)
@@ -49,6 +49,7 @@ typedef enum  {
     STATUS_SHM_GET_HIDDEN     ,
     STATUS_NEED_PASSPHRASE    ,
     STATUS_USERID_HINT        ,
+    STATUS_UNEXPECTED         ,
     STATUS_VALIDSIG           ,
     STATUS_SIG_ID            ,
     STATUS_ENC_TO            ,
index 1d777a5d41d09e12ccfc9513b3160ff70c1ed30c..0c267fe70cadb5c482b3fba8cf85b4f15a2dc9e3 100644 (file)
@@ -62,19 +62,5 @@ _gpgme_free ( void *a )
 
 
 
-/*********************************************
- ********** missing string functions *********
- *********************************************/
 
-#ifndef HAVE_STPCPY
-char *
-stpcpy (char *a, const char *b)
-{
-    while( *b )
-       *a++ = *b++;
-    *a = 0;
-    
-    return a;
-}
-#endif
 
index 74b6576d5d7f4382b94248190477810b1e5f993f..5c486f20127154c5de823bad948e0eb44afa7498 100644 (file)
@@ -124,7 +124,7 @@ compare_versions ( const char *my_version, const char *req_version )
  * and return the version string; return NULL if the condition is not
  * met.  If a NULL is passed to this function, no check is done and
  * the version string is simply returned.  It is a pretty good idea to
- * run this function as soon as poossible, becuase it also intializes 
+ * run this function as soon as possible, because it also intializes 
  * some subsystems.  In a multithreaded environment if should be called
  * before the first thread is created.
  * 
index 89e0dd3ada8ce517bee65e6d3a4d7b1ee0baf749..de7e670456a23592a6589489052fa3454316c3e6 100644 (file)
@@ -770,15 +770,19 @@ build_commandline ( char **argv )
     /* FIXME: we have to quote some things because under Windows the 
      * program parses the commandline and does some unquoting */
     for (i=0; argv[i]; i++)
-        n += strlen (argv[i]) + 1;
+        n += strlen (argv[i]) + 2 + 1; /* 2 extra bytes for possible quoting */
     buf = p = xtrymalloc (n);
     if ( !buf )
         return NULL;
     *buf = 0;
     if ( argv[0] )
         p = stpcpy (p, argv[0]);
-    for (i = 1; argv[i]; i++)
-        p = stpcpy (stpcpy (p, " "), argv[i]);
+    for (i = 1; argv[i]; i++) {
+        if (!*argv[i])
+            p = stpcpy (p, " \"\"");
+        else
+            p = stpcpy (stpcpy (p, " "), argv[i]);
+    }
 
     return buf;
 }
index b9a1c2bb6c44303c732466b77b8023aab3ce2ab6..9325368584e44f364080539eac2acacb346a1bff 100644 (file)
@@ -1,3 +1,8 @@
+2001-07-19  Werner Koch  <wk@gnupg.org>
+
+       * stringhelp.c (ascii_memistr,ascii_isupper,ascii_islower,
+       ascii_toupper,ascii_tolower, ascii_strcasecmp, ascii_memcasecmp): New.
+
 2000-07-26 10:02:51  Werner Koch  (wk@habibti.openit.de)
 
   * stringhelp.c.: Add stdarg.h
index f222a627c2964e538ad8da99bb4d50745e1990f3..0d3035e838cc5f98c1622dc393687411a085696b 100644 (file)
@@ -264,6 +264,79 @@ compare_filenames( const char *a, const char *b )
 }
 
 
+/****************************************************
+ ******** locale insensitive ctype functions ********
+ ****************************************************/
+/* FIXME: replace them by a table lookup and macros */
+int
+ascii_isupper (int c)
+{
+    return c >= 'A' && c <= 'Z';
+}
+
+int
+ascii_islower (int c)
+{
+    return c >= 'a' && c <= 'z';
+}
+
+int 
+ascii_toupper (int c)
+{
+    if (c >= 'a' && c <= 'z')
+        c &= ~0x20;
+    return c;
+}
+
+int 
+ascii_tolower (int c)
+{
+    if (c >= 'A' && c <= 'Z')
+        c |= 0x20;
+    return c;
+}
+
+
+int
+ascii_strcasecmp( const char *a, const char *b )
+{
+    if (a == b)
+        return 0;
+
+    for (; *a && *b; a++, b++) {
+       if (*a != *b && ascii_toupper(*a) != ascii_toupper(*b))
+           break;
+    }
+    return *a == *b? 0 : (ascii_toupper (*a) - ascii_toupper (*b));
+}
+
+int
+ascii_memcasecmp( const char *a, const char *b, size_t n )
+{
+    if (a == b)
+        return 0;
+    for ( ; n; n--, a++, b++ ) {
+       if( *a != *b  && ascii_toupper (*a) != ascii_toupper (*b) )
+            return *a == *b? 0 : (ascii_toupper (*a) - ascii_toupper (*b));
+    }
+    return 0;
+}
+
+int
+ascii_strcmp( const char *a, const char *b )
+{
+    if (a == b)
+        return 0;
+
+    for (; *a && *b; a++, b++) {
+       if (*a != *b )
+           break;
+    }
+    return *a == *b? 0 : (*(signed char *)a - *(signed char *)b);
+}
+
+
+
 /*********************************************
  ********** missing string functions *********
  *********************************************/
index 5d124e401c742e87d74a0ffa3d273d05d2cb77b0..17a6ad09d5a10ab317cc80893a8c7e505451f47b 100644 (file)
@@ -37,6 +37,15 @@ char *make_dirname(const char *filepath);
 char *make_filename( const char *first_part, ... );
 int compare_filenames( const char *a, const char *b );
 
+const char *ascii_memistr( const char *buf, size_t buflen, const char *sub );
+int ascii_isupper (int c);
+int ascii_islower (int c);
+int ascii_toupper (int c);
+int ascii_tolower (int c);
+int ascii_strcasecmp( const char *a, const char *b );
+int ascii_memcasecmp( const char *a, const char *b, size_t n );
+
+
 #ifndef HAVE_MEMICMP
 int memicmp( const char *a, const char *b, size_t n );
 #endif