I'm given a zip archive that is protected by a password,
And I need to write a piece of code that would decrypt the archive to a byte []
without saving intermediate results to a file system,
So far I've found that standard java JDK does not allow to perform operations like this,
And also that there is a library Zip4j
, but it doesn't seem to allow decryption of file directly to byte[]
but it writes result to a file system instead,
If would really really appreciate any help,
Thanks