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

/libcore/ojluni/src/main/java/java/security/
H A DSecureRandom.java46 * Additionally, SecureRandom must produce non-deterministic output.
47 * Therefore any seed material passed to a SecureRandom object must be
48 * unpredictable, and all SecureRandom output sequences must be
53 * <p>A caller obtains a SecureRandom instance via the
57 * SecureRandom random = new SecureRandom();
60 * <p> Many SecureRandom implementations are in the form of a pseudo-random
66 * <p> Typical callers of SecureRandom invoke the following methods
70 * SecureRandom random = new SecureRandom();
99 public class SecureRandom extends java.util.Random { class in inherits:java.util.Random
155 public SecureRandom() { method in class:SecureRandom
188 public SecureRandom(byte seed[]) { method in class:SecureRandom
227 protected SecureRandom(SecureRandomSpi secureRandomSpi, method in class:SecureRandom
232 private SecureRandom(SecureRandomSpi secureRandomSpi, Provider provider, method in class:SecureRandom
[all...]

Completed in 19 milliseconds