diff options
| -rw-r--r-- | doc/gpgme.texi | 5 | ||||
| -rw-r--r-- | src/gpgme.h.in | 3 | 
2 files changed, 5 insertions, 3 deletions
| diff --git a/doc/gpgme.texi b/doc/gpgme.texi index cdacd9e1..a4628378 100644 --- a/doc/gpgme.texi +++ b/doc/gpgme.texi @@ -3711,8 +3711,9 @@ hexadecimal digits, if available.  @item char *keygrip  @since{1.7.0} -The keygrip of the subkey in hex digit form or @code{NULL} if not -available. +The keygrip(s) of the subkey in hex digit form or @code{NULL} if not +available. For combined algorithms the keygrips are delimited +by comma.  @item unsigned long int timestamp  This is the creation timestamp of the subkey.  This is @code{(unsigned diff --git a/src/gpgme.h.in b/src/gpgme.h.in index 7bbeff06..d5f65caa 100644 --- a/src/gpgme.h.in +++ b/src/gpgme.h.in @@ -664,7 +664,8 @@ struct _gpgme_subkey     * string for composite algorithms, or NULL.  */    char *curve; -  /* The keygrip of the subkey in hex digit form or NULL if not available.  */ +  /* The keygrip(s) of the subkey in hex digit form or NULL if not available. +   * For combined algorithms the keygrips are delimited by comma. */    char *keygrip;    /* For OpenPGP the v5 fpr of a v4 key. For X.509 the SHA256 fingerprint.  */ | 
