enc = (PGPEncryptedDataList) pgpF.nextObject();
}
final PGPPBEEncryptedData pbe = (PGPPBEEncryptedData) enc.get(0);
final InputStream clear = pbe.getDataStream(new JcePBEDataDecryptorFactoryBuilder(new JcaPGPDigestCalculatorProviderBuilder().setProvider("BC").build()).setProvider("BC").build(
passphrase.toCharArray()));
PGPObjectFactory pgpFact = new JcaPGPObjectFactory(clear);
final PGPCompressedData cData = (PGPCompressedData) pgpFact.nextObject();