diff --git a/core/java/src/net/i2p/util/FortunaRandomSource.java b/core/java/src/net/i2p/util/FortunaRandomSource.java index 67eeacdb27027724faa114679e805be89c345f8a..11dc3552640104545b0a83a2fcd99e77a0575cca 100644 --- a/core/java/src/net/i2p/util/FortunaRandomSource.java +++ b/core/java/src/net/i2p/util/FortunaRandomSource.java @@ -17,6 +17,7 @@ import java.util.Random; import net.i2p.I2PAppContext; import net.i2p.crypto.EntropyHarvester; +import net.i2p.data.DataHelper; /** * Wrapper around GNU-Crypto's Fortuna PRNG. This seeds from /dev/urandom and @@ -87,9 +88,21 @@ public class FortunaRandomSource extends RandomSource implements EntropyHarveste rv %= n; return rv; } - + @Override - public int nextInt() { return signedNextInt(Integer.MAX_VALUE); } + public int nextInt() { + return signedNextInt() & 0x7fffffff; + } + + /** + * @return all possible int values, positive and negative + * @since 0.9.54 + */ + public int signedNextInt() { + byte[] b = new byte[4]; + nextBytes(b); + return (int) DataHelper.fromLong(b, 0, 4); + } /** * Implementation from Sun's java.util.Random javadocs @@ -125,23 +138,21 @@ public class FortunaRandomSource extends RandomSource implements EntropyHarveste @Override public long nextLong(long n) { if (n == 0) return 0; - long rv = signedNextLong(); + long rv = nextLong(); if (rv < 0) rv = 0 - rv; rv %= n; return rv; } - @Override - public long nextLong() { return signedNextLong(); } - /** - * Implementation from Sun's java.util.Random javadocs + * @return all possible long values, positive and negative */ - private long signedNextLong() { - synchronized(_fortuna) { - return ((long)nextBits(32) << 32) + nextBits(32); - } + @Override + public long nextLong() { + byte[] b = new byte[8]; + nextBytes(b); + return DataHelper.fromLong8(b, 0); } @Override diff --git a/core/java/src/net/i2p/util/RandomSource.java b/core/java/src/net/i2p/util/RandomSource.java index 645f1870a0c902363a6bd72a388f09c6b2dd5c74..85555f005cbe8f1956b6cf62272c8cff8f75800d 100644 --- a/core/java/src/net/i2p/util/RandomSource.java +++ b/core/java/src/net/i2p/util/RandomSource.java @@ -72,6 +72,16 @@ public class RandomSource extends SecureRandom implements EntropyHarvester { return val; } + /** + * This code unused, see FortunaRandomSource override + * + * @return all possible int values, positive and negative + * @since 0.9.54 + */ + public int signedNextInt() { + return nextInt(); + } + /** * Like the modified nextInt, nextLong(n) returns a random number from 0 through n, * including 0, excluding n. @@ -103,33 +113,6 @@ public class RandomSource extends SecureRandom implements EntropyHarvester { } } - /** - * override as synchronized, for those JVMs that don't always pull via - * nextBytes (cough ibm) - - @Override - public boolean nextBoolean() { return super.nextBoolean(); } - - @Override - public void nextBytes(byte buf[]) { super.nextBytes(buf); } - - @Override - public double nextDouble() { return super.nextDouble(); } - - @Override - public float nextFloat() { return super.nextFloat(); } - - @Override - public double nextGaussian() { return super.nextGaussian(); } - - @Override - public int nextInt() { return super.nextInt(); } - - @Override - public long nextLong() { return super.nextLong(); } -*****/ - - /** */ public EntropyHarvester harvester() { return _entropyHarvester; } public void feedEntropy(String source, long data, int bitoffset, int bits) {