mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-30 16:17:02 +01:00
See ChangeLog: Wed Mar 10 11:26:18 CET 1999 Werner Koch
This commit is contained in:
parent
45ac2a622c
commit
42ff4d53cb
6
BUGS
6
BUGS
@ -47,3 +47,9 @@ and after about half a day in the rsync snapshots.
|
||||
--> I hope I've fixed this: Please, can someone check this.
|
||||
I can't reproduce it on the alpha I have access to.
|
||||
|
||||
[ **] #12 1999-03-10
|
||||
gpg --list-secret-keys --with-colon SEGVs
|
||||
FIX: 1999-03-10
|
||||
|
||||
Next #13
|
||||
|
||||
|
1
TODO
1
TODO
@ -19,6 +19,7 @@
|
||||
* when decryptiong multiple key: print a warning only if no usable pubkey
|
||||
encrypt package was found. Extension: display a list of all recipients.
|
||||
|
||||
* describe the Lim-Lee algorithms
|
||||
|
||||
Nice to have
|
||||
------------
|
||||
|
@ -1,3 +1,8 @@
|
||||
Wed Mar 10 11:26:18 CET 1999 Werner Koch <wk@isil.d.shuttle.de>
|
||||
|
||||
* keylist.c (list_keyblock): Fixed segv in uid. Print 'u' as
|
||||
validity of sks.
|
||||
|
||||
Mon Mar 8 20:47:17 CET 1999 Werner Koch <wk@isil.d.shuttle.de>
|
||||
|
||||
* getkey.c (classify_user_id): Add new mode 12 (#<lid>).
|
||||
|
@ -178,7 +178,7 @@ list_keyblock( KBNODE keyblock, int secret )
|
||||
sk = node->pkt->pkt.secret_key;
|
||||
keyid_from_sk( sk, keyid );
|
||||
if( opt.with_colons )
|
||||
printf("sec::%u:%d:%08lX%08lX:%s:%s:::",
|
||||
printf("sec:u:%u:%d:%08lX%08lX:%s:%s:::",
|
||||
nbits_from_sk( sk ),
|
||||
sk->pubkey_algo,
|
||||
(ulong)keyid[0],(ulong)keyid[1],
|
||||
@ -225,10 +225,14 @@ list_keyblock( KBNODE keyblock, int secret )
|
||||
if( opt.with_colons ) {
|
||||
byte namehash[20];
|
||||
|
||||
rmd160_hash_buffer( namehash,
|
||||
if( pk ) {
|
||||
rmd160_hash_buffer( namehash,
|
||||
node->pkt->pkt.user_id->name,
|
||||
node->pkt->pkt.user_id->len );
|
||||
trustletter = query_trust_info( pk, namehash );
|
||||
trustletter = query_trust_info( pk, namehash );
|
||||
}
|
||||
else
|
||||
trustletter = 'u';
|
||||
printf("uid:%c::::::::", trustletter);
|
||||
}
|
||||
else
|
||||
|
Loading…
x
Reference in New Issue
Block a user