aboutsummaryrefslogtreecommitdiffstats
path: root/g10/sign.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--g10/sign.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/g10/sign.c b/g10/sign.c
index afc117e7d..7a8d6978e 100644
--- a/g10/sign.c
+++ b/g10/sign.c
@@ -294,8 +294,13 @@ do_sign (PKT_public_key *pksk, PKT_signature *sig,
/* Check that the signature verification worked and nothing is
* fooling us e.g. by a bug in the signature create code or by
- * deliberately introduced faults. */
- if (!err && !opt.no_sig_create_check)
+ * deliberately introduced faults. Because Libgcrypt 1.7 does this
+ * for RSA internally there is no need to do it here again. */
+ if (!err
+#if GCRYPT_VERSION_NUMBER >= 0x010700 /* Libgcrypt >= 1.7 */
+ && !is_RSA (pksk->pubkey_algo)
+#endif /* Libgcrypt >= 1.7 */
+ )
{
PKT_public_key *pk = xmalloc_clear (sizeof *pk);