public interface EntropyHarvester
Modifier and Type | Method and Description |
---|---|
void |
feedEntropy(String source,
byte[] data,
int offset,
int len)
Feed the entropy pools with data[offset:offset+len]
|
void |
feedEntropy(String source,
long data,
int bitoffset,
int bits)
Feed the entropy pools with the bits in the data
|
void feedEntropy(String source, byte[] data, int offset, int len)
source
- origin of the entropy, allowing the harvester to
determine how much to value the dataoffset
- index into the data array to startlen
- how many bytes to usevoid feedEntropy(String source, long data, int bitoffset, int bits)
source
- origin of the entropy, allowing the harvester to
determine how much to value the databitoffset
- bit index into the data array to start
(using java standard big-endian)bits
- how many bits to use