adoconnection / SevenZipExtractor

C# wrapper for 7z.dll
MIT License
306 stars 83 forks source link

Gzip Signature #71

Open RvdHout opened 1 year ago

RvdHout commented 1 year ago

https://github.com/adoconnection/SevenZipExtractor/blob/master/SevenZipExtractor/Formats.cs#L106

{SevenZipFormat.GZip, new byte[] { 0x1f, 0x0b }},

according to: https://en.wikipedia.org/wiki/List_of_file_signatures, should be:

{SevenZipFormat.GZip, new byte[] { 0x1f, 0x8b }},

adoconnection commented 1 year ago

hi, thanks!