Searched refs:SecureRandom (Results 76 - 100 of 157) sorted by relevance

1234567

/openjdk7/jdk/src/share/classes/java/security/
H A DKeyPairGenerator.java58 * {@link #initialize(int, java.security.SecureRandom) initialize}
61 * <code>keysize</code> argument, and uses the <code>SecureRandom</code>
64 * of <code>SecureRandom</code>, a system-provided source of randomness is
87 * argument. One also has a <code>SecureRandom</code> argument, while the
88 * the other uses the <code>SecureRandom</code>
91 * of <code>SecureRandom</code>, a system-provided source of randomness is
325 * a default parameter set and the <code>SecureRandom</code>
329 * <code>SecureRandom</code>, a system-provided source of randomness is
357 public void initialize(int keysize, SecureRandom random) {
372 * set and the <code>SecureRandom</cod
[all...]
H A DSignatureSpi.java57 protected SecureRandom appRandom = null;
100 SecureRandom random)
/openjdk7/jdk/src/share/classes/java/nio/file/
H A DTempFileHelper.java30 import java.security.SecureRandom;
56 private static final SecureRandom random = new SecureRandom();
/openjdk7/jdk/src/share/classes/java/util/
H A DUUID.java96 static final SecureRandom numberGenerator = new SecureRandom();
142 SecureRandom ng = Holder.numberGenerator;
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DARCFOURCipher.java154 protected void engineInit(int opmode, Key key, SecureRandom random)
161 AlgorithmParameterSpec params, SecureRandom random)
172 AlgorithmParameters params, SecureRandom random)
H A DSunJCE.java35 import java.security.SecureRandom;
94 static final SecureRandom RANDOM = new SecureRandom();
H A DPKCS12PBECipherCore.java230 SecureRandom random) throws InvalidKeyException,
321 SecureRandom random)
335 void implInit(int opmode, Key key, SecureRandom random)
412 SecureRandom random)
418 SecureRandom random)
422 protected void engineInit(int opmode, Key key, SecureRandom random)
487 SecureRandom random)
493 SecureRandom random)
497 protected void engineInit(int opmode, Key key, SecureRandom random)
H A DRSACipher.java201 protected void engineInit(int opmode, Key key, SecureRandom random)
217 AlgorithmParameterSpec params, SecureRandom random)
224 AlgorithmParameters params, SecureRandom random)
243 private void init(int opmode, Key key, SecureRandom random,
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/GenSSLConfigs/
H A DTraffic.java38 private SecureRandom prng;
47 prng = SecureRandom.getInstance("SHA1PRNG");
55 public void setPRNG (SecureRandom prng)
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11KeyGenerator.java206 protected void engineInit(SecureRandom random) {
213 SecureRandom random) throws InvalidAlgorithmParameterException {
219 protected void engineInit(int keySize, SecureRandom random) {
H A DP11TlsKeyMaterialGenerator.java81 protected void engineInit(SecureRandom random) {
86 SecureRandom random) throws InvalidAlgorithmParameterException {
106 protected void engineInit(int keysize, SecureRandom random) {
H A DP11ECDHKeyAgreement.java72 protected void engineInit(Key key, SecureRandom random)
84 SecureRandom random) throws InvalidKeyException,
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DCertAndKeyGen.java114 public void setRandom (SecureRandom generator)
145 prng = new SecureRandom();
322 private SecureRandom prng;
/openjdk7/jdk/test/javax/crypto/CipherSpi/
H A DDirectBBRemaining.java32 import java.security.SecureRandom;
47 private static Random random = new SecureRandom();
/openjdk7/jdk/test/javax/crypto/CryptoPermission/
H A DRC2PermCheck.java56 SecureRandom srand = new SecureRandom();
/openjdk7/jdk/src/share/classes/sun/security/ec/
H A DECDHKeyAgreement.java59 protected void engineInit(Key key, SecureRandom random)
72 SecureRandom random) throws InvalidKeyException,
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DCipherSpi.java33 import java.security.SecureRandom;
352 SecureRandom random)
405 SecureRandom random)
458 SecureRandom random)
H A DKeyAgreement.java337 AlgorithmParameterSpec params, SecureRandom random)
347 AlgorithmParameterSpec params, SecureRandom random)
420 * {@link SecureRandom <code>SecureRandom</code>}
424 * SecureRandom, a system-provided source of randomness will be used.)
458 public final void init(Key key, SecureRandom random)
478 * {@link SecureRandom <code>SecureRandom</code>}
482 * SecureRandom, a system-provided source of randomness will be used.)
518 SecureRandom rando
[all...]
H A DKeyGenerator.java56 * {@link #init(int, java.security.SecureRandom) init}
59 * <code>keysize</code> argument, and uses the SecureRandom implementation
62 * providers supply a SecureRandom implementation), and one that takes just a
76 * argument. One also has a <code>SecureRandom</code> argument, while the
77 * other uses the SecureRandom implementation
80 * providers supply a SecureRandom implementation).
135 private SecureRandom initRandom;
370 public final void init(SecureRandom random) {
400 * {@link SecureRandom <code>SecureRandom</cod
[all...]
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DEphemeralKeyManager.java58 KeyPair getRSAKeyPair(boolean export, SecureRandom random) {
H A DJsseJce.java309 static SecureRandom getSecureRandom() throws KeyManagementException {
311 return new SecureRandom();
316 return SecureRandom.getInstance("PKCS11", cryptoProvider);
321 if (s.getType().equals("SecureRandom")) {
323 return SecureRandom.getInstance(s.getAlgorithm(), cryptoProvider);
329 throw new KeyManagementException("FIPS mode: no SecureRandom "
H A DDHCrypt.java96 DHCrypt(int keyLength, SecureRandom random) {
121 DHCrypt(BigInteger modulus, BigInteger base, SecureRandom random) {
/openjdk7/jdk/src/share/classes/sun/security/tools/
H A DTimestampedSigner.java35 import java.security.SecureRandom;
62 private static final SecureRandom RANDOM;
64 SecureRandom tmp = null;
66 tmp = SecureRandom.getInstance("SHA1PRNG");
/openjdk7/jdk/test/sun/security/pkcs11/ec/
H A DReadCertificates.java47 private static SecureRandom random;
68 random = new SecureRandom();
/openjdk7/jdk/src/share/classes/com/sun/net/ssl/
H A DSSLContext.java177 SecureRandom random)

Completed in 59 milliseconds

1234567