diff options
author | Marcus Brinkmann <[email protected]> | 2003-07-31 16:59:36 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2003-07-31 16:59:36 +0000 |
commit | 9d0642c0125e0cc78e03243aa33dfddf1c065ed0 (patch) | |
tree | 2bda3d64f07b9af0fcd25f920e700bd7c4522dea /doc | |
parent | doc/ (diff) | |
download | gpgme-9d0642c0125e0cc78e03243aa33dfddf1c065ed0.tar.gz gpgme-9d0642c0125e0cc78e03243aa33dfddf1c065ed0.zip |
doc/
2003-07-31 Marcus Brinkmann <[email protected]>
* gpgme.texi (Key Management): Add can_authenticate flag.
gpgme/
2003-07-31 Marcus Brinkmann <[email protected]>
* gpgme.h (struct _gpgme_subkey): Add flag CAN_AUTHENTICATE.
Lower _UNUSED to 23 bits.
(struct _gpgme_key): Likewise.
* keylist.c (set_mainkey_capability): Support 'a' and 'A'.
(set_subkey_capability): Support 'a'.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ChangeLog | 2 | ||||
-rw-r--r-- | doc/gpgme.texi | 7 |
2 files changed, 9 insertions, 0 deletions
diff --git a/doc/ChangeLog b/doc/ChangeLog index 60336a8f..b06ffd72 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,5 +1,7 @@ 2003-07-31 Marcus Brinkmann <[email protected]> + * gpgme.texi (Key Management): Add can_authenticate flag. + * gpgme.texi (Listing Keys): Document GPG_ERR_AMBIGUOUS_NAME for gpgme_get_key. diff --git a/doc/gpgme.texi b/doc/gpgme.texi index 4a97e8de..018102b2 100644 --- a/doc/gpgme.texi +++ b/doc/gpgme.texi @@ -2023,6 +2023,9 @@ This is true if the subkey can be used to create data signatures. @item unsigned int can_certify : 1 This is true if the subkey can be used to create key certificates. +@item unsigned int can_authenticate : 1 +This is true if the subkey can be used for authentication. + @item unsigned int secret : 1 This is true if the subkey is a secret key. @@ -2181,6 +2184,10 @@ data signatures. This is true if the key (ie one of its subkeys) can be used to create key certificates. +@item unsigned int can_authenticate : 1 +This is true if the key (ie one of its subkeys) can be used for +authentication. + @item unsigned int secret : 1 This is true if the key is a secret key. |