I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 896af2c5 authored by zzz's avatar zzz
Browse files

Utils: Improve random seed initialization

Fallback to Random rather than try SecureRandom twice
Fetch from SecureRandom incrementally
Remove log warning
parent 2c3311b4
No related branches found
No related tags found
No related merge requests found
...@@ -13,6 +13,7 @@ import gnu.crypto.prng.AsyncFortunaStandalone; ...@@ -13,6 +13,7 @@ import gnu.crypto.prng.AsyncFortunaStandalone;
import java.io.IOException; import java.io.IOException;
import java.security.SecureRandom; import java.security.SecureRandom;
import java.util.Random;
import net.i2p.I2PAppContext; import net.i2p.I2PAppContext;
import net.i2p.crypto.EntropyHarvester; import net.i2p.crypto.EntropyHarvester;
...@@ -40,7 +41,9 @@ public class FortunaRandomSource extends RandomSource implements EntropyHarveste ...@@ -40,7 +41,9 @@ public class FortunaRandomSource extends RandomSource implements EntropyHarveste
_fortuna.seed(seed); _fortuna.seed(seed);
} else { } else {
// may block forever // may block forever
SecureRandom sr = new SecureRandom(); //SecureRandom sr = new SecureRandom();
// SecureRandom already failed in initSeed(), so try Random
Random sr = new Random();
sr.nextBytes(seed); sr.nextBytes(seed);
_fortuna.seed(seed); _fortuna.seed(seed);
} }
......
...@@ -195,8 +195,9 @@ public class RandomSource extends SecureRandom implements EntropyHarvester { ...@@ -195,8 +195,9 @@ public class RandomSource extends SecureRandom implements EntropyHarvester {
} }
if (ok) if (ok)
System.arraycopy(tbuf, 0, buf, 0, buf.length); System.arraycopy(tbuf, 0, buf, 0, buf.length);
else // See FortunaRandomSource constructor for fallback
System.out.println("INFO: SecureRandom init failed or took too long"); //else
// System.out.println("INFO: SecureRandom init failed or took too long");
} }
} catch (InterruptedException ie) {} } catch (InterruptedException ie) {}
...@@ -218,17 +219,23 @@ public class RandomSource extends SecureRandom implements EntropyHarvester { ...@@ -218,17 +219,23 @@ public class RandomSource extends SecureRandom implements EntropyHarvester {
*/ */
private static class SecureRandomInit implements Runnable { private static class SecureRandomInit implements Runnable {
private final byte[] buf; private final byte[] buf;
private static final int SZ = 64;
public SecureRandomInit(byte[] buf) { public SecureRandomInit(byte[] buf) {
this.buf = buf; this.buf = buf;
} }
public void run() { public void run() {
byte[] buf2 = new byte[buf.length]; byte[] buf2 = new byte[SZ];
// do this 64 bytes at a time, so if system is low on entropy we will
// hopefully get something before the timeout
try { try {
SecureRandom.getInstance("SHA1PRNG").nextBytes(buf2); SecureRandom sr = SecureRandom.getInstance("SHA1PRNG");
synchronized(buf) { for (int i = 0; i < buf.length; i += SZ) {
System.arraycopy(buf2, 0, buf, 0, buf.length); sr.nextBytes(buf2);
synchronized(buf) {
System.arraycopy(buf2, 0, buf, i, Math.min(SZ, buf.length - i));
}
} }
} catch (NoSuchAlgorithmException e) {} } catch (NoSuchAlgorithmException e) {}
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment