Exemplo n.º 1
0
 protected void engineInit(int opmode, Key key, AlgorithmParameterSpec params, SecureRandom random)
     throws InvalidKeyException, InvalidAlgorithmParameterException {
   if (params != null && params instanceof RC2ParameterSpec) {
     embeddedCipher.initEffectiveKeyBits(((RC2ParameterSpec) params).getEffectiveKeyBits());
   } else {
     embeddedCipher.initEffectiveKeyBits(0);
   }
   core.init(opmode, key, params, random);
 }
Exemplo n.º 2
0
 protected void engineInit(int opmode, Key key, AlgorithmParameters params, SecureRandom random)
     throws InvalidKeyException, InvalidAlgorithmParameterException {
   if (params != null && params.getAlgorithm().equals("RC2")) {
     try {
       RC2ParameterSpec rc2Params = params.getParameterSpec(RC2ParameterSpec.class);
       engineInit(opmode, key, rc2Params, random);
     } catch (InvalidParameterSpecException ipse) {
       throw new InvalidAlgorithmParameterException("Wrong parameter type: RC2 expected");
     }
   } else {
     embeddedCipher.initEffectiveKeyBits(0);
     core.init(opmode, key, params, random);
   }
 }
Exemplo n.º 3
0
 protected void engineInit(int opmode, Key key, SecureRandom random) throws InvalidKeyException {
   embeddedCipher.initEffectiveKeyBits(0);
   core.init(opmode, key, random);
 }