summaryrefslogtreecommitdiffstats
path: root/g10/build-packet.c
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2016-10-28 21:01:23 +0200
committerWerner Koch <wk@gnupg.org>2016-10-28 21:01:51 +0200
commitb6f08dbb0b45059cdbbb5d9be9725e437f42a8cc (patch)
tree705d8fdfa8ad0d63e0782e5ed58bd7f3b8af973a /g10/build-packet.c
parentdirmngr: Fix signature checking. (diff)
downloadgnupg2-b6f08dbb0b45059cdbbb5d9be9725e437f42a8cc.tar.xz
gnupg2-b6f08dbb0b45059cdbbb5d9be9725e437f42a8cc.zip
gpg: Enable the Issuer Fingerprint from rfc4880bis
* g10/build-packet.c (build_sig_subpkt_from_sig): Always write the new Issuer Fingerprint sub-packet. * g10/mainproc.c (check_sig_and_print): Always consider that sub-packet. -- The specs for this sub-packet have been pushed to the OpenPGP WG's repo today. See-also: https://mailarchive.ietf.org/arch/msg/\ openpgp/GvPo2eSL9GW9WcGhOocY7KBa9FY Signed-off-by: Werner Koch <wk@gnupg.org>
Diffstat (limited to 'g10/build-packet.c')
-rw-r--r--g10/build-packet.c15
1 files changed, 5 insertions, 10 deletions
diff --git a/g10/build-packet.c b/g10/build-packet.c
index 86d42efe1..0115d64a1 100644
--- a/g10/build-packet.c
+++ b/g10/build-packet.c
@@ -1002,17 +1002,12 @@ build_sig_subpkt_from_sig (PKT_signature *sig, PKT_public_key *pksk)
build_sig_subpkt (sig, SIGSUBPKT_ISSUER, buf, 8);
}
- /* For a future v5 keys we write the ISSUER_FPR subpacket. We
- * also write that for a v4 key is experimental support for
- * RFC4880bis is requested. */
- if (pksk->version > 4 || opt.flags.rfc4880bis)
+ /* Write the new ISSUER_FPR subpacket. */
+ fingerprint_from_pk (pksk, buf+1, &fprlen);
+ if (fprlen == 20)
{
- fingerprint_from_pk (pksk, buf+1, &fprlen);
- if (fprlen == 20)
- {
- buf[0] = pksk->version;
- build_sig_subpkt (sig, SIGSUBPKT_ISSUER_FPR, buf, 21);
- }
+ buf[0] = pksk->version;
+ build_sig_subpkt (sig, SIGSUBPKT_ISSUER_FPR, buf, 21);
}
/* Write the timestamp. */