diff options
author | Werner Koch <wk@gnupg.org> | 2016-06-20 23:58:16 +0200 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2016-06-20 23:59:18 +0200 |
commit | 955baf04364721457cd99aad21942523cd50498c (patch) | |
tree | 1d1746bde9fd38230261943f1c870eea9dc58dbd /common/openpgpdefs.h | |
parent | gpg: New option --rfc4880bis. (diff) | |
download | gnupg2-955baf04364721457cd99aad21942523cd50498c.tar.xz gnupg2-955baf04364721457cd99aad21942523cd50498c.zip |
gpg: Add experimental support for an issuer fpr.
* common/openpgpdefs.h (SIGSUBPKT_ISSUER_FPR): New.
* g10/build-packet.c (build_sig_subpkt_from_sig): Add arg PKSK and
insert the issuer fpr if needed.
* g10/sign.c (write_signature_packets): Pass signing key.
(make_keysig_packet): Ditto.
(update_keysig_packet): Ditto.
* g10/parse-packet.c (dump_sig_subpkt): Print issuer fpr.
(parse_one_sig_subpkt): Detect issuer fpr.
(can_handle_critical): Add issuer fpr.
* g10/mainproc.c (check_sig_and_print): Try to get key via fingerprint.
* g10/gpgv.c (keyserver_import_fprint): New stub.
* g10/test-stubs.c (keyserver_import_fprint): New stub.
--
This support is enabled with the --rfc4880bis option and intended to
test to recently proposed issuer fpr.
Signed-off-by: Werner Koch <wk@gnupg.org>
Diffstat (limited to 'common/openpgpdefs.h')
-rw-r--r-- | common/openpgpdefs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/openpgpdefs.h b/common/openpgpdefs.h index f8b86e1bd..2c0ace2a5 100644 --- a/common/openpgpdefs.h +++ b/common/openpgpdefs.h @@ -115,6 +115,7 @@ typedef enum SIGSUBPKT_FEATURES = 30, /* Feature flags. */ SIGSUBPKT_SIGNATURE = 32, /* Embedded signature. */ + SIGSUBPKT_ISSUER_FPR = 33, /* EXPERIMENTAL: Issuer fingerprint. */ SIGSUBPKT_FLAG_CRITICAL = 128 } |