diff --git a/OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/ui/adapter/ImportKeysListEntry.java b/OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/ui/adapter/ImportKeysListEntry.java
index 13309435d..05521b0c9 100644
--- a/OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/ui/adapter/ImportKeysListEntry.java
+++ b/OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/ui/adapter/ImportKeysListEntry.java
@@ -173,33 +173,30 @@ public class ImportKeysListEntry implements Serializable, Parcelable {
this.hexKeyId = PgpKeyHelper.convertKeyIdToHex(keyId);
this.bitStrength = pgpKeyRing.getPublicKey().getBitStrength();
final int algorithm = pgpKeyRing.getPublicKey().getAlgorithm();
- this.algorithm = getAlgorithmFromId(algorithm);
+ this.algorithm = getAlgorithmFromId(algorithm);
}
- /**
- * Based on OpenPGP Message Format
- */
- private final static SparseArray ALGORITHM_IDS = new SparseArray() {{
- put(-1, "unknown"); // TODO: with resources
- put(0, "unencrypted");
- put(PGPPublicKey.RSA_GENERAL, "RSA");
- put(PGPPublicKey.RSA_ENCRYPT, "RSA");
- put(PGPPublicKey.RSA_SIGN, "RSA");
- put(PGPPublicKey.ELGAMAL_ENCRYPT, "ElGamal");
- put(PGPPublicKey.ELGAMAL_GENERAL, "ElGamal");
- put(PGPPublicKey.DSA, "DSA");
- put(PGPPublicKey.EC, "ECC");
- put(PGPPublicKey.ECDSA, "ECC");
- put(PGPPublicKey.ECDH, "ECC");
- }};
-
- /**
- * Based on OpenPGP Message Format
- */
- public static String getAlgorithmFromId(int algorithmId) {
- return (ALGORITHM_IDS.get(algorithmId) != null ? ALGORITHM_IDS.get(algorithmId) : ALGORITHM_IDS.get(-1));
- }
+ /**
+ * Based on OpenPGP Message Format
+ */
+ private final static SparseArray ALGORITHM_IDS = new SparseArray() {{
+ put(-1, "unknown"); // TODO: with resources
+ put(0, "unencrypted");
+ put(PGPPublicKey.RSA_GENERAL, "RSA");
+ put(PGPPublicKey.RSA_ENCRYPT, "RSA");
+ put(PGPPublicKey.RSA_SIGN, "RSA");
+ put(PGPPublicKey.ELGAMAL_ENCRYPT, "ElGamal");
+ put(PGPPublicKey.ELGAMAL_GENERAL, "ElGamal");
+ put(PGPPublicKey.DSA, "DSA");
+ put(PGPPublicKey.EC, "ECC");
+ put(PGPPublicKey.ECDSA, "ECC");
+ put(PGPPublicKey.ECDH, "ECC");
+ }};
+ /**
+ * Based on OpenPGP Message Format
+ */
+ public static String getAlgorithmFromId(int algorithmId) {
+ return (ALGORITHM_IDS.get(algorithmId) != null ? ALGORITHM_IDS.get(algorithmId) : ALGORITHM_IDS.get(-1));
+ }
}
-
-
diff --git a/OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/util/HkpKeyServer.java b/OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/util/HkpKeyServer.java
index 0839fc494..a354d19e8 100644
--- a/OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/util/HkpKeyServer.java
+++ b/OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/util/HkpKeyServer.java
@@ -69,55 +69,64 @@ public class HkpKeyServer extends KeyServer {
private String mHost;
private short mPort;
- /**
- * pub:%keyid%:%algo%:%keylen%:%creationdate%:%expirationdate%:%flags%
- *
- * - %keyid% = this is either the fingerprint or the key ID of the key.
- * Either the 16-digit or 8-digit key IDs are acceptable, but obviously the fingerprint is best.
- * - %algo% = the algorithm number, (i.e. 1==RSA, 17==DSA, etc). See RFC-2440
- * - %keylen% = the key length (i.e. 1024, 2048, 4096, etc.)
- * - %creationdate% = creation date of the key in standard RFC-2440 form (i.e. number of seconds since 1/1/1970 UTC time)
- * - %expirationdate% = expiration date of the key in standard RFC-2440 form (i.e. number of seconds since 1/1/1970 UTC time)
- * - %flags% = letter codes to indicate details of the key, if any. Flags may be in any order. The
- * meaning of "disabled" is implementation-specific. Note that individual flags may be unimplemented, so
- * the absence of a given flag does not necessarily mean the absence of the detail.
- *
- * - r == revoked
- * - d == disabled
- * - e == expired
- *
- *
- *
- *
- *
- * @see 5.2. Machine Readable Indexes in Internet-Draft OpenPGP HTTP Keyserver Protocol Document
- */
- public static final Pattern PUB_KEY_LINE = Pattern
- .compile("pub:([0-9a-fA-F]+):([0-9]+):([0-9]+):([0-9]+):([0-9]*):([rde]*)[ \n\r]*" // pub line
- + "(uid:(.*):([0-9]+):([0-9]*):([rde]*))+", // one or more uid lines
- Pattern.CASE_INSENSITIVE);
+ /**
+ * pub:%keyid%:%algo%:%keylen%:%creationdate%:%expirationdate%:%flags%
+ *
+ * - %keyid% = this is either the fingerprint or the key ID of the key. Either the 16-digit or 8-digit
+ * key IDs are acceptable, but obviously the fingerprint is best.
+ * - %algo% = the algorithm number, (i.e. 1==RSA, 17==DSA, etc).
+ * See RFC-2440
+ * - %keylen% = the key length (i.e. 1024, 2048, 4096, etc.)
+ * - %creationdate% = creation date of the key in standard
+ * RFC-2440 form (i.e. number of seconds since
+ * 1/1/1970 UTC time)
+ * - %expirationdate% = expiration date of the key in standard
+ * RFC-2440 form (i.e. number of seconds since
+ * 1/1/1970 UTC time)
+ * - %flags% = letter codes to indicate details of the key, if any. Flags may be in any order. The
+ * meaning of "disabled" is implementation-specific. Note that individual flags may be unimplemented, so
+ * the absence of a given flag does not necessarily mean the absence of the detail.
+ *
+ * - r == revoked
+ * - d == disabled
+ * - e == expired
+ *
+ *
+ *
+ *
+ * @see 5.2. Machine Readable Indexes
+ * in Internet-Draft OpenPGP HTTP Keyserver Protocol Document
+ */
+ public static final Pattern PUB_KEY_LINE = Pattern
+ .compile("pub:([0-9a-fA-F]+):([0-9]+):([0-9]+):([0-9]+):([0-9]*):([rde]*)[ \n\r]*" // pub line
+ + "(uid:(.*):([0-9]+):([0-9]*):([rde]*))+", // one or more uid lines
+ Pattern.CASE_INSENSITIVE);
- /**
- * uid:%escaped uid string%:%creationdate%:%expirationdate%:%flags%
- *
- * - %escaped uid string% = the user ID string, with HTTP %-escaping for anything that isn't 7-bit
- * safe as well as for the ":" character. Any other characters may be escaped, as desired.
- * - %creationdate% = creation date of the key in standard RFC-2440 form (i.e. number of seconds since 1/1/1970 UTC time)
- * - %expirationdate% = expiration date of the key in standard RFC-2440 form (i.e. number of seconds since 1/1/1970 UTC time)
- * - %flags% = letter codes to indicate details of the key, if any. Flags may be in any order. The
- * meaning of "disabled" is implementation-specific. Note that individual flags may be unimplemented, so
- * the absence of a given flag does not necessarily mean the absence of the detail.
- *
- * - r == revoked
- * - d == disabled
- * - e == expired
- *
- *
- *
- */
- public static final Pattern UID_LINE = Pattern
- .compile("uid:(.*):([0-9]+):([0-9]*):([rde]*)",
- Pattern.CASE_INSENSITIVE);
+ /**
+ * uid:%escaped uid string%:%creationdate%:%expirationdate%:%flags%
+ *
+ * - %escaped uid string% = the user ID string, with HTTP %-escaping for anything that isn't 7-bit
+ * safe as well as for the ":" character. Any other characters may be escaped, as desired.
+ * - %creationdate% = creation date of the key in standard
+ * RFC-2440 form (i.e. number of seconds since
+ * 1/1/1970 UTC time)
+ * - %expirationdate% = expiration date of the key in standard
+ * RFC-2440 form (i.e. number of seconds since
+ * 1/1/1970 UTC time)
+ * - %flags% = letter codes to indicate details of the key, if any. Flags may be in any order. The
+ * meaning of "disabled" is implementation-specific. Note that individual flags may be unimplemented, so
+ * the absence of a given flag does not necessarily mean the absence of the detail.
+ *
+ * - r == revoked
+ * - d == disabled
+ * - e == expired
+ *
+ *
+ *
+ */
+ public static final Pattern UID_LINE = Pattern
+ .compile("uid:(.*):([0-9]+):([0-9]*):([rde]*)",
+ Pattern.CASE_INSENSITIVE);
private static final short PORT_DEFAULT = 11371;
@@ -192,77 +201,78 @@ public class HkpKeyServer extends KeyServer {
throw new QueryException("querying server(s) for '" + mHost + "' failed");
}
- @Override
- public ArrayList search(String query) throws QueryException, TooManyResponses,
- InsufficientQuery {
- ArrayList results = new ArrayList();
+ @Override
+ public ArrayList search(String query) throws QueryException, TooManyResponses,
+ InsufficientQuery {
+ ArrayList results = new ArrayList();
- if (query.length() < 3) {
- throw new InsufficientQuery();
- }
+ if (query.length() < 3) {
+ throw new InsufficientQuery();
+ }
- String encodedQuery;
- try {
- encodedQuery = URLEncoder.encode(query, "utf8");
- } catch (UnsupportedEncodingException e) {
- return null;
- }
- String request = "/pks/lookup?op=index&search=" + encodedQuery + "&options=mr";
+ String encodedQuery;
+ try {
+ encodedQuery = URLEncoder.encode(query, "utf8");
+ } catch (UnsupportedEncodingException e) {
+ return null;
+ }
+ String request = "/pks/lookup?op=index&search=" + encodedQuery + "&options=mr";
- String data = null;
- try {
- data = query(request);
- } catch (HttpError e) {
- if (e.getCode() == 404) {
- return results;
- } else {
- if (e.getData().toLowerCase(Locale.US).contains("no keys found")) {
- return results;
- } else if (e.getData().toLowerCase(Locale.US).contains("too many")) {
- throw new TooManyResponses();
- } else if (e.getData().toLowerCase(Locale.US).contains("insufficient")) {
- throw new InsufficientQuery();
- }
- }
- throw new QueryException("querying server(s) for '" + mHost + "' failed");
- }
+ String data = null;
+ try {
+ data = query(request);
+ } catch (HttpError e) {
+ if (e.getCode() == 404) {
+ return results;
+ } else {
+ if (e.getData().toLowerCase(Locale.US).contains("no keys found")) {
+ return results;
+ } else if (e.getData().toLowerCase(Locale.US).contains("too many")) {
+ throw new TooManyResponses();
+ } else if (e.getData().toLowerCase(Locale.US).contains("insufficient")) {
+ throw new InsufficientQuery();
+ }
+ }
+ throw new QueryException("querying server(s) for '" + mHost + "' failed");
+ }
- final Matcher matcher = PUB_KEY_LINE.matcher(data);
- while (matcher.find()) {
- final ImportKeysListEntry info = new ImportKeysListEntry();
- info.bitStrength = Integer.parseInt(matcher.group(3));
- final int algorithmId = Integer.decode(matcher.group(2));
- info.algorithm = getAlgorithmFromId(algorithmId);
+ final Matcher matcher = PUB_KEY_LINE.matcher(data);
+ while (matcher.find()) {
+ final ImportKeysListEntry info = new ImportKeysListEntry();
+ info.bitStrength = Integer.parseInt(matcher.group(3));
+ final int algorithmId = Integer.decode(matcher.group(2));
+ info.algorithm = getAlgorithmFromId(algorithmId);
- info.hexKeyId = "0x" + matcher.group(1);
- info.keyId = PgpKeyHelper.convertHexToKeyId(matcher.group(1));
+ info.hexKeyId = "0x" + matcher.group(1);
+ info.keyId = PgpKeyHelper.convertHexToKeyId(matcher.group(1));
- final long creationDate = Long.parseLong(matcher.group(4));
- final GregorianCalendar tmpGreg = new GregorianCalendar(TimeZone.getTimeZone("UTC"));
- tmpGreg.setTimeInMillis(creationDate*1000);
- info.date = tmpGreg.getTime();
+ final long creationDate = Long.parseLong(matcher.group(4));
+ final GregorianCalendar tmpGreg = new GregorianCalendar(TimeZone.getTimeZone("UTC"));
+ tmpGreg.setTimeInMillis(creationDate * 1000);
+ info.date = tmpGreg.getTime();
- info.revoked = matcher.group(6).contains("r");
- info.userIds = new ArrayList();
+ info.revoked = matcher.group(6).contains("r");
+ info.userIds = new ArrayList();
- final String uidLines = matcher.group(7);
- final Matcher uidMatcher = UID_LINE.matcher(uidLines);
- while (uidMatcher.find()) {
- String tmp = uidMatcher.group(1).replaceAll("<.*?>", "");
- tmp = Html.fromHtml(tmp).toString().trim();
- if (tmp.contains("%"))
- {
- try {
- tmp = (URLDecoder.decode(tmp, "UTF8")); // converts String like "Universit%C3%A4t" to a proper form "Universität".
- } catch (UnsupportedEncodingException ignored) {
- }
- }
- info.userIds.add(tmp);
- }
- results.add(info);
- }
- return results;
- }
+ final String uidLines = matcher.group(7);
+ final Matcher uidMatcher = UID_LINE.matcher(uidLines);
+ while (uidMatcher.find()) {
+ String tmp = uidMatcher.group(1).replaceAll("<.*?>", "");
+ tmp = Html.fromHtml(tmp).toString().trim();
+ if (tmp.contains("%")) {
+ try {
+ // converts Strings like "Universit%C3%A4t" to a proper encoding form "Universität".
+ tmp = (URLDecoder.decode(tmp, "UTF8"));
+ } catch (UnsupportedEncodingException ignored) {
+ // will never happen, because "UTF8" is supported
+ }
+ }
+ info.userIds.add(tmp);
+ }
+ results.add(info);
+ }
+ return results;
+ }
@Override
public String get(long keyId) throws QueryException {