show key fingerprint in key list

Fixes issue 76
This commit is contained in:
Thialfihar
2010-12-25 19:12:35 +00:00
parent 9e54b3d99d
commit 9e8b266bf0
9 changed files with 59 additions and 11 deletions

View File

@@ -149,7 +149,7 @@ public class HkpKeyServer extends KeyServer {
info.size = Integer.parseInt(matcher.group(1));
info.algorithm = matcher.group(2);
info.keyId = Apg.keyFromHex(matcher.group(3));
info.fingerPrint = Apg.getFingerPrint(info.keyId);
info.fingerPrint = Apg.getSmallFingerPrint(info.keyId);
String chunks[] = matcher.group(4).split("-");
info.date = new GregorianCalendar(Integer.parseInt(chunks[0]),
Integer.parseInt(chunks[1]),