mirror of
git://git.gnupg.org/gnupg.git
synced 2025-04-11 22:01:08 +02:00
g10/mainproc: disable hash contexts when --skip-verify is used
* g10/mainproc.c (proc_plaintext): Do not enable hash contexts when opt.skip_verify is set. -- Signed-off-by: Jussi Kivilinna <jussi.kivilinna@iki.fi>
This commit is contained in:
parent
654e353d9b
commit
73e74de0e3
@ -862,7 +862,10 @@ proc_plaintext( CTX c, PACKET *pkt )
|
|||||||
/* The onepass signature case. */
|
/* The onepass signature case. */
|
||||||
if (n->pkt->pkt.onepass_sig->digest_algo)
|
if (n->pkt->pkt.onepass_sig->digest_algo)
|
||||||
{
|
{
|
||||||
gcry_md_enable (c->mfx.md, n->pkt->pkt.onepass_sig->digest_algo);
|
if (!opt.skip_verify)
|
||||||
|
gcry_md_enable (c->mfx.md,
|
||||||
|
n->pkt->pkt.onepass_sig->digest_algo);
|
||||||
|
|
||||||
any = 1;
|
any = 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -880,7 +883,8 @@ proc_plaintext( CTX c, PACKET *pkt )
|
|||||||
* documents. */
|
* documents. */
|
||||||
clearsig = (*data == 0x01);
|
clearsig = (*data == 0x01);
|
||||||
for (data++, datalen--; datalen; datalen--, data++)
|
for (data++, datalen--; datalen; datalen--, data++)
|
||||||
gcry_md_enable (c->mfx.md, *data);
|
if (!opt.skip_verify)
|
||||||
|
gcry_md_enable (c->mfx.md, *data);
|
||||||
any = 1;
|
any = 1;
|
||||||
break; /* Stop here as one-pass signature packets are not
|
break; /* Stop here as one-pass signature packets are not
|
||||||
expected. */
|
expected. */
|
||||||
@ -888,7 +892,8 @@ proc_plaintext( CTX c, PACKET *pkt )
|
|||||||
else if (n->pkt->pkttype == PKT_SIGNATURE)
|
else if (n->pkt->pkttype == PKT_SIGNATURE)
|
||||||
{
|
{
|
||||||
/* The SIG+LITERAL case that PGP used to use. */
|
/* The SIG+LITERAL case that PGP used to use. */
|
||||||
gcry_md_enable ( c->mfx.md, n->pkt->pkt.signature->digest_algo );
|
if (!opt.skip_verify)
|
||||||
|
gcry_md_enable (c->mfx.md, n->pkt->pkt.signature->digest_algo);
|
||||||
any = 1;
|
any = 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user