diff options
author | Werner Koch <[email protected]> | 2012-05-02 08:30:09 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2012-05-02 08:30:09 +0000 |
commit | d6402b888fd00b883bbfc00c91a2aa9706e4377e (patch) | |
tree | 0faa629f7ed5b5a01df05a4f721db6d2e1b54137 /NEWS | |
parent | Fix timestamp parsing for y2038 hack. (diff) | |
download | gpgme-d6402b888fd00b883bbfc00c91a2aa9706e4377e.tar.gz gpgme-d6402b888fd00b883bbfc00c91a2aa9706e4377e.zip |
Update signature summary for the case of missing X.509 keys.
* src/verify.c (gpgme_op_verify_result): Update summary field.
--
This is actually a hack to solve the problem that GPGME currently does
not emit ERRSIG for a missing public key.
Diffstat (limited to '')
-rw-r--r-- | NEWS | 16 |
1 files changed, 10 insertions, 6 deletions
@@ -4,6 +4,10 @@ Noteworthy changes in version 1.3.2 (unreleased) * Remove support for libgpgme-pth. As far as we know, this was never used, and GnuPG is going to use our own npth in the future. + * Fix signature summary information for a missing X.509 key. + + * Fix parsing of dates >= year 2038. + Noteworthy changes in version 1.3.1 (2011-06-16) ------------------------------------------------ @@ -120,7 +124,7 @@ Noteworthy changes in version 1.1.7 (2008-10-17) * Using GPGME_KEYLIST_MODE_LOCAL combined with GPGME_KEYLIST_MODE_EXTERN is now supported; it uses the --locate-keys feature of gpg (>= 2.0.10). - + * The encoding of gpgme_data_t objects can affect the output encoding of export, sign and encrypt operations now (the same operations that are also affected by the ASCII mode switch). We believe this @@ -764,7 +768,7 @@ Noteworthy changes in version 0.4.1 (2003-06-06) So, instead: char *fpr; - err = gpgme_op_genkey (ctx, NULL, NULL, &fpr); + err = gpgme_op_genkey (ctx, NULL, NULL, &fpr); if (!err && fpr) printf ("%s\n", fpr); @@ -1052,7 +1056,7 @@ Noteworthy changes in version 0.3.13 (2002-11-20) Noteworthy changes in version 0.3.12 (2002-10-15) ------------------------------------------------- - * Fixed some bux with key listings. + * Fixed some bux with key listings. * The development has been branched to clean up some API issues. This 0.3 series will be kept for compatibility reasons; so do don't @@ -1060,7 +1064,7 @@ Noteworthy changes in version 0.3.12 (2002-10-15) Noteworthy changes in version 0.3.11 (2002-09-20) ------------------------------------------------- - + * Bug fixes. Noteworthy changes in version 0.3.10 (2002-09-02) @@ -1266,7 +1270,7 @@ gpgme_register_idle NEW Noteworthy changes in version 0.3.0 (2001-12-19) ------------------------------------------------ - + * New interface gpgme_set_protocol() to set the protocol and thus the crypto engine to be used by the context. Currently, the OpenPGP and the CMS protocols are supported. They are specified by the new @@ -1336,7 +1340,7 @@ Noteworthy changes in version 0.2.3 (2001-09-17) Noteworthy changes in version 0.2.2 (2001-06-12) ------------------------------------------------ - + * Implemented a key cache. * Fixed a race condition under W32 and some other bug fixes. |