Looking for a C# implementation of (Pk) Zip32
Posted
by
bukko
on Programmers
See other posts from Programmers
or by bukko
Published on 2012-06-11T15:46:43Z
Indexed on
2012/06/11
16:47 UTC
Read the original article
Hit count: 401
c#
|compression
I need to implement Zip32 (PK compatible) in C#. I can't just call a separate dll or exe because (1) I don't want to write the uncompressed file to disk and (2) I want to avoid the possibly that someone could wrap that library - either of these would compromise security.
My ideal solution would be to find a C# implementation of the Zip32 algorithm which I could use, and just modify it so I can pass a byte array or something.
Does anyone have any suggestions or (I dare but hope) examples of C# PKZip implementations?
© Programmers or respective owner