-
Notifications
You must be signed in to change notification settings - Fork 251
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
can we use create and unzip password protected ZIP ? #93
Comments
Same question: does this library allow creating archives with password protection? Thanks |
Wow, an unanswered issue. Yeah, no password support at the moment. Would need to do some research on this and see how doable is this. |
Cool thanks, we found just one library that supports that feature: zip4j but it seems to not be maintained :( |
You could also call an external tool. zt-exec might be useful for that. |
Ok, cool! Btw, which feature are you looking for exactly. I see that https://en.wikipedia.org/wiki/Zip_(file_format)#Encryption has some options. Wondering which to look at for possible implementation. |
Any option is enough for our project (https://github.com/CERT-BDF/TheHive). We just want to generate Zip archives that require a password (independently from the encryption strength) |
No, using an external tool is not a viable option for us unfortunately :( |
I looked into this a little. Right now I see that to support passwords and encryption we would need to implement the ZIP layer fully rather than relying on the JDK ZIP support that just doesn't support passwords. This sounds like a huge undertaking though and maybe even a separate project to this. And then this project can choose which subsystem to use for example. Any thoughts? |
No description provided.
The text was updated successfully, but these errors were encountered: