diff options
author | Dominik Schürmann <dominik@dominikschuermann.de> | 2014-01-19 00:00:56 +0100 |
---|---|---|
committer | Dominik Schürmann <dominik@dominikschuermann.de> | 2014-01-19 00:00:56 +0100 |
commit | 1bac2849b8ed8c5ab05e846c1e4b2e1aff5269aa (patch) | |
tree | 71942ca163848aea3462834f713bdd39da518167 /OpenPGP-Keychain/src/org/sufficientlysecure/keychain/pgp/PgpKeyHelper.java | |
parent | 12c7e219c81e919fd532d6fea255c446d7ef381f (diff) | |
download | open-keychain-1bac2849b8ed8c5ab05e846c1e4b2e1aff5269aa.tar.gz open-keychain-1bac2849b8ed8c5ab05e846c1e4b2e1aff5269aa.tar.bz2 open-keychain-1bac2849b8ed8c5ab05e846c1e4b2e1aff5269aa.zip |
improve performance of adapter implementations by caching index, use data uri where possible in ViewKeyActivity
Diffstat (limited to 'OpenPGP-Keychain/src/org/sufficientlysecure/keychain/pgp/PgpKeyHelper.java')
-rw-r--r-- | OpenPGP-Keychain/src/org/sufficientlysecure/keychain/pgp/PgpKeyHelper.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/pgp/PgpKeyHelper.java b/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/pgp/PgpKeyHelper.java index edb30496a..8c1f35e4e 100644 --- a/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/pgp/PgpKeyHelper.java +++ b/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/pgp/PgpKeyHelper.java @@ -447,11 +447,11 @@ public class PgpKeyHelper { } default: { - algorithmStr = "???"; + algorithmStr = "Unknown"; break; } } - return algorithmStr + ", " + keySize + "bit"; + return algorithmStr + ", " + keySize + " bit"; } public static String convertFingerprintToHex(byte[] fp) { @@ -510,7 +510,7 @@ public class PgpKeyHelper { } /** - * TODO: what is the difference to the other function? + * TODO: documentation * * @param keyId * @return |