|
For the latest news and information visit The GNU Crypto project |
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object gnu.crypto.util.PRNG
A useful Singleton hash-based (SHA) pseudo-random number generator used throughout this library.
MDGenerator
Method Summary | |
static void |
nextBytes(byte[] buffer)
Completely fills the designated buffer with random data
generated by the underlying singleton. |
static void |
nextBytes(byte[] buffer,
int offset,
int length)
Fills the designated buffer , starting from byte at
position offset with, at most, length bytes of
random data generated by the underlying singleton. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
public static void nextBytes(byte[] buffer)
Completely fills the designated buffer
with random data
generated by the underlying singleton.
buffer
- the place holder of random bytes generated by this PRNG
singleton. On output, the contents of buffer
are replaced
with pseudo-random data, iff the buffer
size is not zero.public static void nextBytes(byte[] buffer, int offset, int length)
Fills the designated buffer
, starting from byte at
position offset
with, at most, length
bytes of
random data generated by the underlying singleton.
IRandom.nextBytes(byte[], int, int)
|
For the latest news and information visit The GNU Crypto project |
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |