archive/zip: support for encrypted archives #12081
Comments
I've got a working implementation of archive/zip that can read/write password protected archives. The code is at https://github.com/alexmullins/zip. Details: Public API additions:
Current roadblocks:
Any feedback is welcome. |
I was working on a project that requires me to send a password protected zip file to a system that can only read Zip Standard Encryption. Not finding any go source for this, I manage to create a working code based on @alexmullins code. Special thanks to you Sir While it's not advisable to use Zip Standard Encryption for security reason, for those who have to work with it, you can check my code at https://github.com/yeka/zip I hope the awesome Go Team can integrate encryption into their standard zip/archive |
Any updates here? officially supporting protected files would be good enough :) |
@yeka Could you add a license to your git repo? |
ZIP file format specification includes encrypted archives.
Current implementation doesn't support writing/reading such archives.
The text was updated successfully, but these errors were encountered: