dataCipher = Cipher.getInstance("DES/CBC/PKCS5Padding");
dataCipher.init(Cipher.DECRYPT_MODE, encKey, new IvParameterSpec(
ASN1OctetString.getInstance(sParams).getOctets()));
} catch (GeneralSecurityException e) {
throw new CMSException("Could not create DES cipher", e);
}
return new RecipientOperator(new InputDecryptor() {
public AlgorithmIdentifier getAlgorithmIdentifier() {
return contentEncryptionAlgorithm;