Skip to content

moshahmed/blowfish-zip-unzip

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
ssl
 
 
 
 
 
 
 
 
 
 

blowfish-zip-unzip

zip and unzip with blowfish encryption.

Compiles with visual studio 2008, VC6, GCC mingw 4.8.1. Tested binaries on win32x86, and zip files are compatible between different compilers.

New option --blowfish to enable stronger encryption method. Output zip files can contain mix of old and new encrypted files, the data structure is identical; except that blowfish encrypted files in an archive require newer exe and --blowfish flag to unpack.

Sample Usage:

$ zip --blowfish -Deruo -P password1 file.zip files1 .. zipup files1

$ unzip --blowfish -P password1 file.zip .. to extract files1

$ zip -Deruo -P password2 file.zip files2 .. to add more files2

$ unzip -P password2 file.zip .. to extract files2