node/deps/zlib/contrib/minizip
Node.js GitHub Bot 60787746c4
deps: update zlib to 1.3.2.1-motley-3246f1b
PR-URL: https://github.com/nodejs/node/pull/63773
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
2026-06-18 10:10:46 +02:00
..
ChangeLogUnzip
crypt.h deps: update zlib to 1.3.2.1-motley-3246f1b 2026-06-18 10:10:46 +02:00
ints.h
ioapi.c deps: update zlib to 1.3.2.1-motley-3246f1b 2026-06-18 10:10:46 +02:00
ioapi.h deps: update zlib to 1.3.2.1-motley-3246f1b 2026-06-18 10:10:46 +02:00
iowin32.c deps: update zlib to 1.3.2.1-motley-3246f1b 2026-06-18 10:10:46 +02:00
iowin32.h deps: update zlib to 1.3.2.1-motley-3246f1b 2026-06-18 10:10:46 +02:00
Makefile deps: update zlib to 1.3.2.1-motley-3246f1b 2026-06-18 10:10:46 +02:00
miniunz.c deps: update zlib to 1.3.2.1-motley-3246f1b 2026-06-18 10:10:46 +02:00
minizip.c deps: update zlib to 1.3.2.1-motley-3246f1b 2026-06-18 10:10:46 +02:00
minizip.md
mztools.c deps: update zlib to 1.3.2.1-motley-3246f1b 2026-06-18 10:10:46 +02:00
mztools.h
README.chromium deps: update zlib to 1.3.2.1-motley-3246f1b 2026-06-18 10:10:46 +02:00
skipset.h deps: update zlib to 1.3.2.1-motley-3246f1b 2026-06-18 10:10:46 +02:00
unzip.c deps: update zlib to 1.3.2.1-motley-3246f1b 2026-06-18 10:10:46 +02:00
unzip.h deps: update zlib to 1.3.2.1-motley-3246f1b 2026-06-18 10:10:46 +02:00
zip.c deps: update zlib to 1.3.2.1-motley-3246f1b 2026-06-18 10:10:46 +02:00
zip.h deps: update zlib to 1.3.2.1-motley-3246f1b 2026-06-18 10:10:46 +02:00

Name: ZIP file API for reading file entries in a ZIP archive
Short Name: minizip
URL: https://github.com/madler/zlib/tree/master/contrib/minizip
Version: 1.3.2
Revision: 09a1572aa624e5ddb6c075dc013880de70b1b9b9
Update Mechanism: Manual
License: Zlib
License File: //third_party/zlib/LICENSE
Shipped: yes
Security Critical: yes
CPEPrefix: cpe:/a:minizip_project:minizip

Description:
Minizip provides API on top of zlib that can enumerate and extract ZIP archive
files. See minizip.md for chromium build instructions.

Local Modifications:
- OS macro tweaks for Android and Fuchsia
  0000-build.patch (the contrib/minizip/ parts)
  0008-minizip-zip-unzip-tools.patch (crrev.com/886990)

- Fix build on UWP. (crrev.com/750639)
  0004-fix-uwp.patch

- Fixed uncompressing files with wrong uncompressed size set
  crrev.com/268940
  0014-minizip-unzip-with-incorrect-size.patch

- Enable traditional PKWARE decryption in zlib/contrib/minizip
	Correct the value of rest_read_compressed when decompressing an encrypted
  zip. (crrev.com/580862)
  0015-minizip-unzip-enable-decryption.patch

- Add parsing of the 'Info-ZIP Unicode Path Extra Field' as described in
  https://pkware.cachefly.net/webdocs/casestudies/APPNOTE.TXT section 4.6.9.
  (see crrev.com/1002476)
  0016-minizip-parse-unicode-path-extra-field.patch

- Added support for zip64 archives that have extra bytes on front (for example,
  large CRX files).
  0018-support-prefixed-zip64.patch

- Added stricter parsing for zip64 candidates to avoid an issue where a zip64
  could be embedded in a non-zip64 zip.
  0019-fix-zip64-in-zip.patch