mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-03 12:11:33 +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 hope I've fixed this: Please, can someone check this.
|
||||||
I can't reproduce it on the alpha I have access to.
|
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
|
* when decryptiong multiple key: print a warning only if no usable pubkey
|
||||||
encrypt package was found. Extension: display a list of all recipients.
|
encrypt package was found. Extension: display a list of all recipients.
|
||||||
|
|
||||||
|
* describe the Lim-Lee algorithms
|
||||||
|
|
||||||
Nice to have
|
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>
|
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>).
|
* 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;
|
sk = node->pkt->pkt.secret_key;
|
||||||
keyid_from_sk( sk, keyid );
|
keyid_from_sk( sk, keyid );
|
||||||
if( opt.with_colons )
|
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 ),
|
nbits_from_sk( sk ),
|
||||||
sk->pubkey_algo,
|
sk->pubkey_algo,
|
||||||
(ulong)keyid[0],(ulong)keyid[1],
|
(ulong)keyid[0],(ulong)keyid[1],
|
||||||
@ -225,10 +225,14 @@ list_keyblock( KBNODE keyblock, int secret )
|
|||||||
if( opt.with_colons ) {
|
if( opt.with_colons ) {
|
||||||
byte namehash[20];
|
byte namehash[20];
|
||||||
|
|
||||||
rmd160_hash_buffer( namehash,
|
if( pk ) {
|
||||||
|
rmd160_hash_buffer( namehash,
|
||||||
node->pkt->pkt.user_id->name,
|
node->pkt->pkt.user_id->name,
|
||||||
node->pkt->pkt.user_id->len );
|
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);
|
printf("uid:%c::::::::", trustletter);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user