I have to create a WinZip compatible zip file from a PHP application on a linux box, and it must use AES 256 encryption. I have found a few solutions for PHP on Windows, but they don't help me! A PHP package would be great, but if I need to, I can always have my PHP code run exec() or something to run a linux command line utility.

Any suggestions?

link|improve this question
Looks like you'll need to call an external zip program to apply encryption. PHP's built-in zip class would work fine for making/extracting generic zip files on Linux or Windows, but doesn't appear to mention any encryption support. – bob-the-destroyer Oct 21 '10 at 21:52
It seems that the AES encryption is a specific WinZIP feature, (see winzip.com/aes_info.htm) rather than a widely acknowledged standard in the world of ZIP files, making it potentially difficult to create such archives using PHP without making a call to WinZIP, especially on non-windows machines. And that makes me think: why exactly do you wish to do this? There probably are plenty of good alternatives. What OS will your script run on, and what OS will the zip files be opened on? What type of stuff do you want to protect from who, and why? – Pelle ten Cate Oct 22 '10 at 9:18
The short answer Pelle ten Cate...my client has specified these requirements. I am hoping to get them to agree to a slight variation which is easier for me to implement. – Jason Oct 25 '10 at 3:13
zipping important documents may sometimes come hand-in-hand with encrypting them at the same time. It's a matter of convenience mixed with security. Therefore, often you'll find a simple exec command to an external zip application to both zip and apply encryption to your files at the same time is likely just fine. If encryption is not important at the time, just use PHP's zip class. If it is, call an external zip application to do that job. In other words, Woot4Moo's answer is not entirely off. – bob-the-destroyer Oct 29 '10 at 4:13
feedback

2 Answers

Winzip and PHP have nothing to do with each other first off. .zip is a file format. On Windows I have had WinZip handle .tar files which Linux creates natively. AES encryption also has nothing to do with the file format.

link|improve this answer
often times people leave a comment for the downvote – Woot4Moo Oct 21 '10 at 15:31
The question is about CREATING a zip file, not EXTRACTING one. Jason seems to be looking for a way to create a ZIP file with AES encryption, using a PHP script on a server. //EDIT: Yes, apologies for first downvoting and then commenting, should have done it in opposite order. – Pelle ten Cate Oct 21 '10 at 15:33
tar czf myCustomTar.tar *.myFiles creates a WinZip compatible archive. Therefore it should be trivial to make a system call from a php function. Granted I know nothing of PHP and my linux is limited – Woot4Moo Oct 21 '10 at 15:52
Pelle ten Cate is exactly right. I need to create a zip file which can be opened by WinZip. – Jason Oct 21 '10 at 15:57
Woot4Moo - if I can use some other tool to encrypt my files, then use tar to package them, perhaps that would work. But is this compatible with WinZip's AES encryption? – Jason Oct 21 '10 at 15:58
show 1 more comment
feedback
  1. If a Zip application clone is not already installed on your host, just search Google for installing one of a hundred different zip applications capable of supporting both encryption and cross-platform compatibility.
  2. Use `exec` or similar PHP function to call any available external zip application capable of zipping and applying AES-256 encryption to your target file. You'll need to know any command line switches which your zip application requires to make this happen. The target file names within your `exec` string parameter can of course be switched out using variables.
  3. Serve your new zip file

However, should encryption not be a concern, see PHP's Zip class for making generic zip files: http://php.net/manual/en/book.zip.php

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.