From: Panu Matilainen Date: Thu, 9 Apr 2009 10:05:00 +0000 (+0300) Subject: Fix PGP v4 fingerprint calculation (rhbz#493777) X-Git-Tag: rpm-4.8.0-beta1~534 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7a8aecbc8651cab2bd945db8ffd749f9a165bdf1;p=platform%2Fupstream%2Frpm.git Fix PGP v4 fingerprint calculation (rhbz#493777) - patch from openSUSE / Michael Schroeder --- diff --git a/rpmio/rpmpgp.c b/rpmio/rpmpgp.c index 2fec32f..e671552 100644 --- a/rpmio/rpmpgp.c +++ b/rpmio/rpmpgp.c @@ -1087,6 +1087,7 @@ int pgpPubkeyFingerprint(const uint8_t * pkt, size_t pktlen, pgpKeyID_t keyid) case 4: { pgpPktKeyV4 v = (pgpPktKeyV4) (h); uint8_t * d = NULL; + uint8_t in[3]; size_t dlen; int i; @@ -1103,7 +1104,12 @@ int pgpPubkeyFingerprint(const uint8_t * pkt, size_t pktlen, pgpKeyID_t keyid) } ctx = rpmDigestInit(PGPHASHALGO_SHA1, RPMDIGEST_NONE); - (void) rpmDigestUpdate(ctx, pkt, (se-pkt)); + i = se - h; + in[0] = 0x99; + in[1] = i >> 8; + in[2] = i; + (void) rpmDigestUpdate(ctx, in, 3); + (void) rpmDigestUpdate(ctx, h, i); (void) rpmDigestFinal(ctx, (void **)&d, &dlen, 0); if (d) {