SharpZipLib
SharpZipLib copied to clipboard
#ziplib is a Zip, GZip, Tar and BZip2 library written entirely in C# for the .NET platform.
https://github.com/icsharpcode/SharpZipLib/blob/7ed87d10b8ecafeb5abb5a129c046837416ac11f/src/ICSharpCode.SharpZipLib/Zip/ZipOutputStream.cs#L261 ZipEntry is now support for BZip2 but ZipOutputStream is still not support that yet?
Spin off from comments in #576 - Where it looked like PartialInputStream needed an implementation of ```ReadAsync``` in order for async read calls against the streams returned from ```ZipFile.GetInputStream``` to...
A work-in-progress attempt to add AES encryption support to ZipFile. Notes: There is currently no way to tell ZipFile what encryption algorithm to use when adding entries, so the only...
I am using SharpZipLib v1.2.0.246 to zip and unzip the files with AES encryption. ### Steps to reproduce 1. I have set the zipEntry.AESKeySize to 128 or 256 2. I...
### Steps to reproduce 1. Load already compressed bzip2 payload into a `MemoryStream` 2. Create `BZip2InputStream` from said `MemoryStream` 3. `Assert.AreNotEqual(memorystream.Length, bzip2stream.Length);` Example code is included below. ### Expected behavior...
Deflate64
[SD-183](http://bugtracker.sharpdevelop.net/issue/ViewIssue.aspx?id=183), originally created on 7/21/2004 21:04:18 by John Reilly Goes hand in hand with Zip64 pretty much, gives better compression that standard deflate --- **Comment from David Pierson on 9/2/2010...
### Steps to reproduce 1. Obtain a file that contains a deflated blob _with some other data following it_. In my case, I have a binary file where there is...
When trying to decompress BZ2 wikipedia dumps (https://dumps.wikimedia.org/enwiki/20170101), I reach an unexpected EndOfFile exception This is apparently linked to the usage of parallel compression when creating the bzip2 file. More...
### Steps to reproduce Try to use the following code to zip a csv file with a special character ("é") in its name: ``` using (var zos = new ZipOutputStream(File.Create(zipPath)))...
I need to know the percentage of completion during the unzip.