Uses of Class java.util.Random

Uses in package java.security

Classes derived from java.util.Random

class
An interface to a cryptographically secure pseudo-random number generator (PRNG).

Uses in package gnu.java.security.sig.dss

Methods with parameter type java.util.Random

BigInteger[]
DSSSignature.sign(DSAPrivateKey k, byte[] h, Random rnd)

Uses in package java.util

Methods with parameter type java.util.Random

void
Shuffle a list according to a given source of randomness.

Uses in package java.math

Constructors with parameter type java.util.Random

BigInteger.BigInteger(int bitLength, int certainty, Random rnd)
BigInteger.BigInteger(int numBits, Random rnd)

Methods with parameter type java.util.Random

BigInteger
BigInteger.probablePrime(int bitLength, Random rnd)
Return a BigInteger that is bitLength bits long with a probability <322^-100 of being composite.

Uses in package gnu.java.security.sig.rsa

Methods with parameter type java.util.Random

byte[]
EME_PKCS1_V1_5.encode(byte[] M, Random rnd)
Similar to the encode(byte[],IRandom) method, except that the source of randmoness is an instance of Random.