diff options
Diffstat (limited to 'doc/gpgme.texi')
| -rw-r--r-- | doc/gpgme.texi | 32 | 
1 files changed, 30 insertions, 2 deletions
| diff --git a/doc/gpgme.texi b/doc/gpgme.texi index b28c6cad..02551d98 100644 --- a/doc/gpgme.texi +++ b/doc/gpgme.texi @@ -3017,6 +3017,10 @@ This is the key ID of the subkey in hexadecimal digits.  This is the fingerprint of the subkey in hexadecimal digits, if  available. +@item char *keygrip +The keygrip of the subkey in hex digit form or @code{NULL} if not +availabale. +  @item long int timestamp  This is the creation timestamp of the subkey.  This is -1 if the  timestamp is invalid, and 0 if it is not available. @@ -3144,6 +3148,16 @@ This is the comment component of @code{uid}, if available.  @item char *email  This is the email component of @code{uid}, if available. +@item char *address; +The mail address (addr-spec from RFC-5322) of the user ID string. +This is general the same as the @code{email} part of this structure +but might be slightly different.  If no mail address is available +@code{NULL} is stored. + +@item gpgme_tofu_info_t tofu +If not @code{NULL} information from the TOFU database pertaining to +this user id. +  @item gpgme_key_sig_t signatures  This is a linked list with the signatures on this user ID.  @end table @@ -3168,8 +3182,8 @@ This is true if the key is disabled.  @item unsigned int invalid : 1  This is true if the key is invalid. This might have several reasons, -for a example for the S/MIME backend, it will be set in during key -listsing if the key could not be validated due to a missing +for a example for the S/MIME backend, it will be set during key +listings if the key could not be validated due to missing  certificates or unmatched policies.  @item unsigned int can_encrypt : 1 @@ -3224,6 +3238,13 @@ in the list is the primary key and usually available.  @item gpgme_user_id_t uids  This is a linked list with the user IDs of the key.  The first user ID  in the list is the main (or primary) user ID. + +@item char *fpr +This field gives the fingerprint of the primary key.  Note that +this is a copy of the fingerprint of the first subkey.  For an +incomplete key (for example from a verification result) a subkey may +be missing but this field may be set nevertheless. +  @end table  @end deftp @@ -4870,6 +4891,13 @@ The hash algorithm used to create this signature.  @item char *pka_address  The mailbox from the PKA information or @code{NULL}. + +@item gpgme_key_t key +An object describing the key used to create the signature.  This key +object may be incomplete in that it only conveys information +availabale directly with a signature.  It may also be @code{NULL} if +such information is not readily available. +  @end table  @end deftp | 
