Lines Matching defs:random

782             SecureRandom random) throws InvalidKeyException,
787 thisSpi.engineInit(opmode, key, random);
791 thisSpi.engineInit(opmode, key, paramSpec, random);
795 thisSpi.engineInit(opmode, key, params, random);
799 thisSpi.engineInit(opmode, key, random);
808 AlgorithmParameters params, SecureRandom random)
812 implInit(spi, initType, opmode, key, paramSpec, params, random);
850 params, random);
954 * <p>This is useful in the case where a random IV was created,
971 * this cipher, or may contain a combination of default and random
1113 * (using provider-specific default or random values) if it is being
1127 * requires any random bytes (e.g., for parameter generation), it will get
1166 * (using provider-specific default or random values) if it is being
1180 * requires any random bytes (e.g., for parameter generation), it will get
1181 * them from <code>random</code>.
1193 * @param random the source of randomness
1202 public final void init(int opmode, Key key, SecureRandom random)
1210 spi.engineInit(opmode, key, random);
1213 chooseProvider(I_KEY, opmode, key, null, null, random);
1235 * provider-specific default or random values) if it is being
1249 * requires any random bytes (e.g., for parameter generation), it will get
1296 * provider-specific default or random values) if it is being
1310 * requires any random bytes (e.g., for parameter generation), it will get
1311 * them from <code>random</code>.
1324 * @param random the source of randomness
1338 SecureRandom random)
1346 spi.engineInit(opmode, key, params, random);
1348 chooseProvider(I_PARAMSPEC, opmode, key, params, null, random);
1366 * provider-specific default or random values) if it is being
1380 * requires any random bytes (e.g., for parameter generation), it will get
1427 * provider-specific default or random values) if it is being
1441 * requires any random bytes (e.g., for parameter generation), it will get
1442 * them from <code>random</code>.
1455 * @param random the source of randomness
1469 SecureRandom random)
1477 spi.engineInit(opmode, key, params, random);
1479 chooseProvider(I_PARAMS, opmode, key, null, params, random);
1505 * (using provider-specific default or random values) if it is being
1519 * requires any random bytes (e.g., for parameter generation), it will get
1575 * (using provider-specific default or random values) if it is being
1589 * requires any random bytes (e.g., for parameter generation), it will get
1590 * them from <code>random</code>.
1602 * @param random the source of randomness
1614 SecureRandom random)
1650 spi.engineInit(opmode, publicKey, random);
1653 chooseProvider(I_CERT, opmode, publicKey, null, null, random);