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

/libcore/luni/src/main/java/java/security/
H A DSecureRandom.java43 * <a name="insecure_seed"><h3>Seeding {@code SecureRandom} may be
54 * {@link #SecureRandom(byte[]) seeded constructor} or by calling {@link
59 * <p>It is dangerous to seed {@code SecureRandom} with the current time because
62 * <p>Calling {@link #setSeed} on a {@code SecureRandom} <i>after</i> it has
67 public class SecureRandom extends Random { class in inherits:Random
72 private static final String SERVICE = "SecureRandom";
83 // Internal SecureRandom used for getSeed(int)
84 private static volatile SecureRandom internalSecureRandom;
87 * Constructs a new {@code SecureRandom} that uses the default algorithm.
89 public SecureRandom() { method in class:SecureRandom
112 public SecureRandom(byte[] seed) { method in class:SecureRandom
126 protected SecureRandom(SecureRandomSpi secureRandomSpi, method in class:SecureRandom
132 private SecureRandom(SecureRandomSpi secureRandomSpi, method in class:SecureRandom
[all...]

Completed in 249 milliseconds