Lines Matching defs:params

781             AlgorithmParameterSpec paramSpec, AlgorithmParameters params,
794 checkCryptoPerm(thisSpi, key, params);
795 thisSpi.engineInit(opmode, key, params, random);
808 AlgorithmParameters params, SecureRandom random)
812 implInit(spi, initType, opmode, key, paramSpec, params, random);
850 params, random);
1003 AlgorithmParameterSpec params;
1005 params = getAlgorithmParameterSpec(checkSpi.engineGetParameters());
1010 if (!passCryptoPermCheck(checkSpi, key, params)) {
1017 AlgorithmParameterSpec params) throws InvalidKeyException,
1026 if ((params != null) && (!passCryptoPermCheck(checkSpi, key, params))) {
1032 AlgorithmParameters params)
1040 pSpec = getAlgorithmParameterSpec(params);
1049 AlgorithmParameterSpec params)
1064 new CryptoPermission(algComponent, keySize, params, em);
1233 * <code>params</code> is null, the underlying cipher implementation is
1266 * @param params the algorithm parameters
1274 * algorithm parameters and <code>params</code> is null, or the given
1279 public final void init(int opmode, Key key, AlgorithmParameterSpec params)
1282 init(opmode, key, params, JceSecurity.RANDOM);
1294 * <code>params</code> is null, the underlying cipher implementation is
1323 * @param params the algorithm parameters
1332 * algorithm parameters and <code>params</code> is null, or the given
1337 public final void init(int opmode, Key key, AlgorithmParameterSpec params,
1345 checkCryptoPerm(spi, key, params);
1346 spi.engineInit(opmode, key, params, random);
1348 chooseProvider(I_PARAMSPEC, opmode, key, params, null, random);
1364 * <code>params</code> is null, the underlying cipher implementation is
1397 * @param params the algorithm parameters
1405 * algorithm parameters and <code>params</code> is null, or the given
1410 public final void init(int opmode, Key key, AlgorithmParameters params)
1413 init(opmode, key, params, JceSecurity.RANDOM);
1425 * <code>params</code> is null, the underlying cipher implementation is
1454 * @param params the algorithm parameters
1463 * algorithm parameters and <code>params</code> is null, or the given
1468 public final void init(int opmode, Key key, AlgorithmParameters params,
1476 checkCryptoPerm(spi, key, params);
1477 spi.engineInit(opmode, key, params, random);
1479 chooseProvider(I_PARAMS, opmode, key, null, params, random);
2472 AlgorithmParameters params)
2474 if (params == null) {
2478 String alg = params.getAlgorithm().toUpperCase(Locale.ENGLISH);
2481 return params.getParameterSpec(RC2ParameterSpec.class);
2485 return params.getParameterSpec(RC5ParameterSpec.class);
2489 return params.getParameterSpec(PBEParameterSpec.class);
2493 return params.getParameterSpec(IvParameterSpec.class);