Decrypting PDF and ZIP

I’m fetching an email including a PDF and a ZIP file (that contains a CSV at the end). Both files are encrypted with the same password. I’d like to read the PDF and the zipped CSV, but I could’nt find an option in the crypto nor the (de)compress node.

Is there one I missed?

Unfortunately the underlying zip library doesn’t support password protected zips. Not clear how your CSV is encrypted though?

The workaround is to write the binary to the filesystem and the use the execute node to run shell or cmd tools against them, e.g. the zip command with supplied password

1 Like