Searched defs:SecureRandom (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DSecureRandom.java54 public final class SecureRandom extends SecureRandomSpi class in inherits:SecureRandomSpi,java.io.Serializable
77 public SecureRandom() { method in class:SecureRandom
87 private SecureRandom(byte seed[]) { method in class:SecureRandom
113 * the empty constructor <a href = "#SecureRandom">SecureRandom</a>
177 private static final SecureRandom seeder;
184 seeder = new SecureRandom(SeedGenerator.getSystemEntropy());
/openjdk7/jdk/src/share/classes/java/security/
H A DSecureRandom.java44 * Additionally, SecureRandom must produce non-deterministic output.
45 * Therefore any seed material passed to a SecureRandom object must be
46 * unpredictable, and all SecureRandom output sequences must be
51 * <p>A caller obtains a SecureRandom instance via the
55 * SecureRandom random = new SecureRandom();
58 * <p> Many SecureRandom implementations are in the form of a pseudo-random
64 * <p> Typical callers of SecureRandom invoke the following methods
68 * SecureRandom random = new SecureRandom();
92 public class SecureRandom extends java.util.Random { class in inherits:java.util.Random
148 public SecureRandom() { method in class:SecureRandom
181 public SecureRandom(byte seed[]) { method in class:SecureRandom
225 protected SecureRandom(SecureRandomSpi secureRandomSpi, method in class:SecureRandom
230 private SecureRandom(SecureRandomSpi secureRandomSpi, Provider provider, method in class:SecureRandom
[all...]

Completed in 31 milliseconds