I am trying to decompress a byte array.
byte[] bloc = { 120, 156, 211, 97, 144, 76, 247, 142, 98, 228, 98, 0, 2, 70, 101, 6, 166, 8, 16, 131, 133, 131, 145, 129, 209, 134, 129, 133, 1, 44, 12, 4, 202, 118, 12, 0, 70, 22, 2, 148 };
As you can see the header is 120 165 (78 9c in hex) witch is the zlib default Compression algorithme. I used the ComponentAce.Compression.ZipForge from the zlib site. I couldn't find samples on how to unzip streams(not files).