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

@@ -141,8 +141,8 @@ public class KeyEditor extends LinearLayout implements Editor, OnClickListener {
}
mAlgorithm.setText(Apg.getAlgorithmInfo(key));
String keyId1Str = Apg.getFingerPrint(key.getKeyID());
String keyId2Str = Apg.getFingerPrint(key.getKeyID() >> 32);
String keyId1Str = Apg.getSmallFingerPrint(key.getKeyID());
String keyId2Str = Apg.getSmallFingerPrint(key.getKeyID() >> 32);
mKeyId.setText(keyId1Str + " " + keyId2Str);
Vector<Choice> choices = new Vector<Choice>();