Mac users: what do you use to create password-protected zip archives?
A client wanted to send over some confidential information and was wondering how to password-protect a zip file. Incredibly, I couldn't find any graphical zip archive utilities for OS X that encrypt files, work in Snow Leopard and are free. 7zX claims to do this but it has some scary user-submitted reviews. Zippist looks promising but it doesn't seem to work in Snow Leopard. I actually use Path Finder or the command line for this, but it's unreasonable to ask most clients to do the same.
What do you use to create password-protected zip archives? What do you recommend to your clients? If you know of any freeware or inexpensive shareware programs, please leave a comment below. My sense is that unless security features like this is built-in or is available at little or no cost, people who aren't already using good security practices are unlikely to start. To improve the situation, I wrote a utility that does the job and am offering it here in case anyone wants or needs it. Ziprotect was built with Platypus and is free and open source.
Ziprotect
http://exaltations.net/files/Ziprotect.tar.gz
Platypus
http://www.sveinbjorn.org/platypus
16 comments
[ 20.5 ms ] story [ 63.2 ms ] threadSo far as I know, pretty much every .zip tool supports the old obfuscation system which can be brute-forced fairly easily (especially on modern hardware). I believe only the latest Windows versions of WinZip and PKZip support their respective versions of AES-encryption, and probably not each others'.
To decompress a zip, double-click.
http://www.apple.com/pro/tips/zip.html
zip -9 -r -e foo.zip foo/
The -e argument will cause zip to ask for a password.
That said, I usually create a normal ZIP file, then use GPG to encrypt it and make sure clients have my public key.
http://download.cnet.com/StuffIt/3000-2250_4-10151590.html
Actually if you archive files in zip format, it use info-zip command utility internally. It supports legacy obfuscation password only.
If you want AES encryption, select 7zip format with password.
Or another trick, If you select 7zip format and give a option '-tzip -mem=AES256' into More archive option text field, you can make AES-256 encrypted zip file. But archive file's extenstion still remains '.7z', so you need to rename it into '.zip'.
I consider adding encryption methods into my modified version.
Sincerely. trip2me
When archive file was made in OSX, it only has UTF-8 filenames in it except ASCII filenames. Therefore non-English Windows user can't read non-English filenames.
If you assign Windows encoding(such as CP949 for Korean, CP850 for French which can be given libiconv encoding list) on zip format , you can make Windows or linux compatible zip archive file.
It also support Unicode zip filename in zip, if filenames are not encoded with above assigned encoding. This behavior is same as Windows's Winzip did. So it reserves maximum compatibility. when legacy windows Archive utility open this file, it can reads non-Unicode files at least.
But for multilingual user, I recommend to use 7zip format.
In case of 7zip format, it supports Unicode normalization. So some characters which are stored in decomposed way( such as u umlaut ) are archived into Unicode NFC(Normalization Form preComposed) way which mainly used in Windows or Linux.
I recommend you to use CleanArchiver, when you exchange files between Windows or Linux users.
trip2me
try this
http://www.mediafire.com/file/nlnwiozndm4/CleanArchiver_2.4a...
I gave all modified source code to original CleanArchiver maker, but it haven't been implemented yet.