Does someone know a good zip library allowing :
> compression into memory
> compression into a file
> compression of a directory tree (or a bunch of files) into 1 file
> decompression
> decompression into memory of a chosen file.
> decompression with password/key (decryption)
> working on windows
> without memory issue!
?
I have also 2 other needs that are less important :
> compression with encryption (using key/password)).
> multiplatform linux, mac ?
Right now, it seems the zlib is near what I am looking for, but I can't find informations on password / encryption of files.
If you have knowledge on these zip question, that may enlighten me, don't hesitate to share it
If you know one library, please let me know, I'll patch Ogre::source with the corresponding Ogre::Archive, promise!
EDIT : after a little thinking it seems encrypting is ok, since each file is encrypted separately, and not as a whole. I just need to encrypt myself each files!


