mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02:00
* trustdb.c (validate_keys): Mask the ownertrust when building the list of
fully valid keys so that disabled keys are still counted in the web of trust. * gpgv.c (main): Fix bug #113 - gpgv should accept the --ignore-time-conflict option. * g10.c (main): Use 3DES for the s2k cipher in --openpgp mode. Double the amount of secure memory to 32k (keys are getting bigger these days).
This commit is contained in:
parent
838fe750bb
commit
8655a545af
4 changed files with 20 additions and 6 deletions
|
@ -1709,8 +1709,9 @@ validate_keys (int interactive)
|
|||
k = new_key_item ();
|
||||
k->kid[0]=kid[0];
|
||||
k->kid[1]=kid[1];
|
||||
k->ownertrust = get_ownertrust (kar->keyblock
|
||||
->pkt->pkt.public_key);
|
||||
k->ownertrust = (get_ownertrust (kar->keyblock
|
||||
->pkt->pkt.public_key)
|
||||
& TRUST_MASK);
|
||||
k->next = klist;
|
||||
klist = k;
|
||||
break;
|
||||
|
@ -1744,7 +1745,6 @@ validate_keys (int interactive)
|
|||
do_sync ();
|
||||
pending_check_trustdb = 0;
|
||||
}
|
||||
|
||||
return rc;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue