Autocrypt: refactoring

pull/200/head
M66B 4 years ago
parent 273d7e0dd2
commit d98ad1b5ac

@ -6650,12 +6650,9 @@ public class FragmentMessages extends FragmentBase implements SharedPreferences.
byte[] keydata = null; byte[] keydata = null;
// https://autocrypt.org/level1.html#the-autocrypt-header // https://autocrypt.org/level1.html#the-autocrypt-header
String[] param = message.autocrypt.split(";"); Map<String, String> kv = MessageHelper.getKeyValues(message.autocrypt);
for (int i = 0; i < param.length; i++) { for (String key : kv.keySet()) {
int e = param[i].indexOf("="); String value = kv.get(key).toLowerCase(Locale.ROOT);
if (e > 0) {
String key = param[i].substring(0, e).trim().toLowerCase(Locale.ROOT);
String value = param[i].substring(e + 1);
Log.i("Autocrypt " + key + "=" + value); Log.i("Autocrypt " + key + "=" + value);
switch (key) { switch (key) {
case "addr": case "addr":
@ -6669,7 +6666,6 @@ public class FragmentMessages extends FragmentBase implements SharedPreferences.
break; break;
} }
} }
}
if (addr == null) if (addr == null)
throw new IllegalArgumentException("Autocrypt: addr not found"); throw new IllegalArgumentException("Autocrypt: addr not found");

Loading…
Cancel
Save