diff options
author | Marcus Brinkmann <[email protected]> | 2004-05-21 15:51:53 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2004-05-21 15:51:53 +0000 |
commit | cf6910f69dd23214ea2016bbd46c580268646aae (patch) | |
tree | f3566936bd2332105d32e11341ddc799f6066b18 /doc/gpgme.texi | |
parent | doc/ (diff) | |
download | gpgme-cf6910f69dd23214ea2016bbd46c580268646aae.tar.gz gpgme-cf6910f69dd23214ea2016bbd46c580268646aae.zip |
doc/
2004-05-21 Marcus Brinkmann <[email protected]>
* gpgme.texi (Decrypt): Add note about new field wrong_key_usage
of gpgme_decrypt_result_t.
gpgme/
2004-05-21 Marcus Brinkmann <[email protected]>
* gpgme.h (struct _gpgme_decrypt_result): New fields
wrong_key_usage and _unused.
* decrypt.c (_gpgme_decrypt_status_handler): Don't skip over
character after a matched string, as in a protocol error this
could skip over the trailing binary zero.
Handle decrypt.keyusage error notifications.
Diffstat (limited to '')
-rw-r--r-- | doc/gpgme.texi | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/doc/gpgme.texi b/doc/gpgme.texi index 5f9501b1..be8f1da3 100644 --- a/doc/gpgme.texi +++ b/doc/gpgme.texi @@ -3523,6 +3523,9 @@ members: @item char *unsupported_algorithm If an unsupported algorithm was encountered, this string describes the algorithm that is not supported. + +@item unsigned int wrong_key_usage : 1 +This is true if the key was not used according to its policy. @end table @end deftp @@ -3608,7 +3611,7 @@ following members: This is a pointer to the next new signature structure in the linked list, or @code{NULL} if this is the last element. -@item gpgme_sigsum_t summary; +@item gpgme_sigsum_t summary This is a bit vector giving a summary of the signature status. It provides an easy interface to a defined semantic of the signature status. Checking just one bit is sufficient to see whether a @@ -3701,7 +3704,7 @@ The creation timestamp of this signature. The expiration timestamp of this signature, or 0 if the signature does not expire. -@item unsigned int wrong_key_usage : 1; +@item unsigned int wrong_key_usage : 1 This is true if the key was not used according to its policy. @item gpgme_validity_t validity |