I would like to unzip and decrypt a zip-encrypted file "Encrypted.zip" using Apache Camel.
The encryption has been done as part of the zipping process, with a simple password, so this is a one-step process, not x.zip.pgp or x.pgp.zip. Zip encryption seems to be AES.
ZipFileDataFormat does not seem to have a password option and Crypto seems to be oriented towards key-files and probably not suited for multiple files.
I have a solution that wraps a call to 7zip.exe, but I am looking for a more efficient and Camel-native way of solving the problem.