This commit is contained in:
zzz
2015-03-13 17:26:15 +00:00
parent 521eb2d8f8
commit 0289cefd8d
7 changed files with 8 additions and 7 deletions

View File

@@ -70,7 +70,7 @@ public class Ed25519LittleEndianEncoding extends Encoding {
// Step 1:
// Calculate q
q = (19 * h9 + (((int) 1) << 24)) >> 25;
q = (19 * h9 + (1 << 24)) >> 25;
q = (h0 + q) >> 26;
q = (h1 + q) >> 25;
q = (h2 + q) >> 26;

View File

@@ -337,7 +337,7 @@ public class I2PSSLSocketFactory {
return enabledArr;
}
if (log.shouldLog(Log.DEBUG)) {
List<String> foo = new ArrayList(selected);
List<String> foo = new ArrayList<String>(selected);
Collections.sort(foo);
log.debug("Selected: " + foo);
}