diff --git a/core/java/src/net/i2p/data/DataHelper.java b/core/java/src/net/i2p/data/DataHelper.java index 60ba86f1caf716dc2254109f42027c1fecda62e0..bd6bf260d9c5734186e6ae50f91b15274d52ed3a 100644 --- a/core/java/src/net/i2p/data/DataHelper.java +++ b/core/java/src/net/i2p/data/DataHelper.java @@ -914,9 +914,20 @@ public class DataHelper { return c; } + /** + * This is different than InputStream.read(target), in that it + * does repeated reads until the full data is received. + */ public static int read(InputStream in, byte target[]) throws IOException { return read(in, target, 0, target.length); } + + /** + * This is different than InputStream.read(target, offset, length), in that it + * returns the new offset (== old offset + bytes read). + * It also does repeated reads until the full data is received. + * @return the new offset (== old offset + bytes read) + */ public static int read(InputStream in, byte target[], int offset, int length) throws IOException { int cur = offset; while (cur < length) { diff --git a/core/java/src/net/i2p/data/Destination.java b/core/java/src/net/i2p/data/Destination.java index 41478275b832bfa65b6d4aa1f66ade08b4efee9b..a8c176df6aea4d734165e6856e9eab5f80d12355 100644 --- a/core/java/src/net/i2p/data/Destination.java +++ b/core/java/src/net/i2p/data/Destination.java @@ -28,7 +28,10 @@ public class Destination extends KeysAndCert { fromBase64(s); } - /** deprecated, used only by Packet.java in streaming */ + /** + * deprecated, used only by Packet.java in streaming + * @return the written length (NOT the new offset) + */ public int writeBytes(byte target[], int offset) { int cur = offset; System.arraycopy(_publicKey.getData(), 0, target, cur, PublicKey.KEYSIZE_BYTES); diff --git a/core/java/src/net/i2p/data/Payload.java b/core/java/src/net/i2p/data/Payload.java index 0371ed73f06805aa9bf2a4a5bef578129021a2e1..bdaac7d4c50601bdba37df4cb5aa15e9c2c704d0 100644 --- a/core/java/src/net/i2p/data/Payload.java +++ b/core/java/src/net/i2p/data/Payload.java @@ -93,6 +93,10 @@ public class Payload extends DataStructureImpl { if (_log.shouldLog(Log.DEBUG)) _log.debug("wrote payload: " + _encryptedData.length); } + + /** + * @return the written length (NOT the new offset) + */ public int writeBytes(byte target[], int offset) { if (_encryptedData == null) throw new IllegalStateException("Not yet encrypted. Please set the encrypted data"); DataHelper.toLong(target, offset, 4, _encryptedData.length); diff --git a/core/java/src/net/i2p/util/FortunaRandomSource.java b/core/java/src/net/i2p/util/FortunaRandomSource.java index 8f499935b94a537f3cbe8e3ad0cb2a3da2359b6a..9061d3a570d585812f03f676ff62c16efd5b4e4b 100644 --- a/core/java/src/net/i2p/util/FortunaRandomSource.java +++ b/core/java/src/net/i2p/util/FortunaRandomSource.java @@ -23,7 +23,7 @@ import net.i2p.crypto.EntropyHarvester; * */ public class FortunaRandomSource extends RandomSource implements EntropyHarvester { - private AsyncFortunaStandalone _fortuna; + private final AsyncFortunaStandalone _fortuna; private double _nextGaussian; private boolean _haveNextGaussian; @@ -210,6 +210,7 @@ public class FortunaRandomSource extends RandomSource implements EntropyHarveste _fortuna.addRandomBytes(data, offset, len); } +/***** public static void main(String args[]) { try { RandomSource rand = I2PAppContext.getGlobalContext().random(); @@ -231,4 +232,5 @@ public class FortunaRandomSource extends RandomSource implements EntropyHarveste System.out.println("Compressed size of 1MB: " + compressed.length); } catch (Exception e) { e.printStackTrace(); } } +*****/ } diff --git a/core/java/src/net/i2p/util/RandomSource.java b/core/java/src/net/i2p/util/RandomSource.java index c37c581dcb9d3ecbf6d0ea09f8bfd73cdd35845c..c7c87239c9db5484c311d0158a2722e83465f0b9 100644 --- a/core/java/src/net/i2p/util/RandomSource.java +++ b/core/java/src/net/i2p/util/RandomSource.java @@ -25,18 +25,23 @@ import net.i2p.data.Base64; * @author jrandom */ public class RandomSource extends SecureRandom implements EntropyHarvester { - private Log _log; - private EntropyHarvester _entropyHarvester; - protected I2PAppContext _context; + private final EntropyHarvester _entropyHarvester; + protected final I2PAppContext _context; public RandomSource(I2PAppContext context) { super(); _context = context; - _log = context.logManager().getLog(RandomSource.class); // when we replace to have hooks for fortuna (etc), replace with // a factory (or just a factory method) _entropyHarvester = this; } + + /** + * Singleton for whatever PRNG i2p uses. + * Same as I2PAppContext.getGlobalContext().random(); + * use context.random() if you have a context already. + * @return I2PAppContext.getGlobalContext().random() + */ public static RandomSource getInstance() { return I2PAppContext.getGlobalContext().random(); }