mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
gpg: Remove option --no-sig-create-check.
* g10/gpg.c (opts): Remove --no-sig-create-check. * g10/options.h (struct opt): Remove field no_sig_create_check. * g10/sign.c (do_sign): Always check unless it is RSA and we are using Libgcrypt 1.7. Signed-off-by: Werner Koch <wk@gnupg.org>
This commit is contained in:
parent
99c9bf7def
commit
f9c83d84e7
4 changed files with 7 additions and 15 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue