From db95894646b87f6178ceaa389cbdb5b1ba8cd97a Mon Sep 17 00:00:00 2001 From: Nathan Moinvaziri Date: Sat, 23 Jan 2021 16:18:11 -0800 Subject: [PATCH] Updated name of project to minizip-ng. --- CMakeLists.txt | 4 ++-- README.md | 30 +++++++++++++----------------- doc/README.md | 6 +++--- doc/mz_compress_level.md | 2 +- doc/mz_compress_method.md | 2 +- doc/mz_encoding.md | 2 +- doc/mz_error.md | 2 +- doc/mz_hash.md | 2 +- doc/mz_host_system.md | 2 +- doc/mz_open_mode.md | 2 +- doc/mz_seek.md | 2 +- doc/mz_zip.md | 2 +- doc/mz_zip64.md | 2 +- doc/mz_zip_file.md | 2 +- minigzip.c | 8 ++++---- minizip.c | 8 ++++---- mz.h | 6 +++--- mz_compat.c | 6 +++--- mz_compat.h | 6 +++--- mz_crypt.c | 6 +++--- mz_crypt.h | 6 +++--- mz_crypt_apple.c | 6 +++--- mz_crypt_openssl.c | 6 +++--- mz_crypt_win32.c | 6 +++--- mz_os.c | 6 +++--- mz_os.h | 6 +++--- mz_os_posix.c | 6 +++--- mz_os_win32.c | 6 +++--- mz_strm.c | 6 +++--- mz_strm.h | 6 +++--- mz_strm_buf.c | 6 +++--- mz_strm_buf.h | 6 +++--- mz_strm_bzip.c | 6 +++--- mz_strm_bzip.h | 6 +++--- mz_strm_libcomp.c | 6 +++--- mz_strm_libcomp.h | 6 +++--- mz_strm_lzma.c | 6 +++--- mz_strm_lzma.h | 6 +++--- mz_strm_mem.c | 6 +++--- mz_strm_mem.h | 6 +++--- mz_strm_os.h | 6 +++--- mz_strm_os_posix.c | 6 +++--- mz_strm_os_win32.c | 6 +++--- mz_strm_pkcrypt.c | 6 +++--- mz_strm_pkcrypt.h | 6 +++--- mz_strm_split.c | 6 +++--- mz_strm_split.h | 6 +++--- mz_strm_wzaes.c | 6 +++--- mz_strm_wzaes.h | 6 +++--- mz_strm_zlib.c | 6 +++--- mz_strm_zlib.h | 6 +++--- mz_strm_zstd.c | 6 +++--- mz_strm_zstd.h | 6 +++--- mz_zip.c | 6 +++--- mz_zip.h | 6 +++--- mz_zip_rw.c | 6 +++--- mz_zip_rw.h | 6 +++--- test/fuzz/standalone.c | 4 ++-- test/fuzz/unzip_fuzzer.c | 4 ++-- test/fuzz/zip_fuzzer.c | 4 ++-- test/test.c | 4 ++-- 61 files changed, 168 insertions(+), 172 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2f747ea..c9523e0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ #*************************************************************************** # Copyright (C) 2017-2020 Nathan Moinvaziri -# https://github.com/nmoinvaz/minizip +# https://github.com/zlib-ng/minizip-ng # Copyright (C) 2016 Matthias Schmieder # schmieder.matthias@gmail.com #*************************************************************************** @@ -603,7 +603,7 @@ endif() if(MZ_COMPAT) set(COMPAT_HEADER "\ /* file.h -- Compatibility layer shim\n\ - part of the MiniZip project\n\n\ + part of the minizip-ng project\n\n\ This program is distributed under the terms of the same license as zlib.\n\ See the accompanying LICENSE file for the full text of the license.\n\ */\n\n\ diff --git a/README.md b/README.md index b8be4b4..1a7f669 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,11 @@ -# minizip 2.10.6 +# minizip-ng 2.10.6 -minizip is a zip manipulation library written in C that is supported on Windows, macOS, and Linux. +minizip-ng is a zip manipulation library written in C that is supported on Windows, macOS, and Linux. -[![Master Branch Status](https://github.com/nmoinvaz/minizip/workflows/CI/badge.svg)](https://github.com/nmoinvaz/minizip/actions) +[![Master Branch Status](https://github.com/zlib-ng/minizip-ng/workflows/CI/badge.svg)](https://github.com/zlib-ng/minizip-ng/actions) [![Fuzzing Status](https://oss-fuzz-build-logs.storage.googleapis.com/badges/minizip.svg)](https://bugs.chromium.org/p/oss-fuzz/issues/list?sort=-opened&can=1&q=proj:minizip) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/53d48ca8fec549f4a8b39cf95cba6ad6)](https://www.codacy.com/manual/nmoinvaz/minizip?utm_source=github.com&utm_medium=referral&utm_content=nmoinvaz/minizip&utm_campaign=Badge_Grade) -[![CodeFactor](https://www.codefactor.io/repository/github/nmoinvaz/minizip/badge)](https://www.codefactor.io/repository/github/nmoinvaz/minizip) -[![License: Zlib](https://img.shields.io/badge/license-zlib-lightgrey.svg)](https://github.com/nmoinvaz/minizip/blob/master/LICENSE) +[![License: Zlib](https://img.shields.io/badge/license-zlib-lightgrey.svg)](https://github.com/zlib-ng/minizip-ng/blob/master/LICENSE) [![codecov.io](https://codecov.io/github/nmoinvaz/minizip/coverage.svg?branch=dev)](https://codecov.io/github/nmoinvaz/minizip/) Developed and maintained by Nathan Moinvaziri. @@ -15,20 +14,17 @@ Developed and maintained by Nathan Moinvaziri. |Name|Description| |:-|:-| -|[master](https://github.com/nmoinvaz/minizip/tree/master)|Modern rewrite that includes more advanced features, improvements in code maintainability and readability, and the reduction of duplicate code. Compatibility layer provided for consumers of original minizip.| -|[dev](https://github.com/nmoinvaz/minizip/tree/dev)|Latest development code| -|[1.2](https://github.com/nmoinvaz/minizip/tree/1.2)|Changes to original minizip that includes WinZip AES encryption, disk splitting, I/O buffering and some additional fixes. Not ABI compatible with original minizip.| -|[1.1](https://github.com/nmoinvaz/minizip/tree/1.1)|Original minizip as of zlib 1.2.11.| +|[master](https://github.com/zlib-ng/minizip-ng/tree/master)|Most recent release.| +|[dev](https://github.com/zlib-ng/minizip-ng/tree/dev)|Latest development code.| +|[1.2](https://github.com/zlib-ng/minizip-ng/tree/1.2)|Old changes to original minizip that includes WinZip AES encryption, disk splitting, I/O buffering and some additional fixes. Not ABI compatible with original minizip.| +|[1.1](https://github.com/zlib-ng/minizip-ng/tree/1.1)|Original minizip as of zlib 1.2.11.| ## History Minizip was originally developed by [Gilles Vollant](https://www.winimage.com/zLibDll/minizip.html) in 1998. It was first included in the zlib distribution as an additional code contribution starting in zlib 1.1.2. Since that time, it has been continually improved upon and contributed to by many people. The original [project](https://github.com/madler/zlib/tree/master/contrib/minizip) can still be found in the zlib distribution that is maintained by Mark Adler. -My work with the minizip library started in 2006 when I fixed a few bugs I found and submitted them to -Gilles Vollant. In 2010, I implemented WinZip AES encryption, disk splitting, and -I/O buffering that were necessary for another project I was working on. Shortly after, I created this public repository -so I could share my improvements with the community. In early 2017, I began the work to refactor and rewrite -the library as version 2 because it had become difficult to maintain and code readability suffered over the years. +The motivation behind this repository has been the need for new features and bug fixes to the original library which had +not been maintained for a long period of time. The code has been largely refactored and rewritten in order to help improve maintainability and readability. A compatibility layer has been provided for consumers of the original minizip library. ## Features @@ -101,9 +97,9 @@ installed then it will be used, otherwise CMake will retrieve the source code fo |Project|License|CMake Option|Comments| |-|-|-|-| -[bzip2](https://www.sourceware.org/bzip2/)|[license](https://github.com/nmoinvaz/minizip/blob/dev/lib/bzip2/LICENSE)|`MZ_BZIP2`|Written by Julian Seward.| +[bzip2](https://www.sourceware.org/bzip2/)|[license](https://github.com/zlib-ng/minizip-ng/blob/dev/lib/bzip2/LICENSE)|`MZ_BZIP2`|Written by Julian Seward.| |[liblzma](https://tukaani.org/xz/)|Public domain|`MZ_LZMA`|Written by Igor Pavlov and Lasse Collin.| -|[zlib](https://zlib.net/)|zlib|`MZ_ZLIB`|Written by Mark Adler and Jean-loup Gailly. Or alternatively, [zlib-ng](https://github.com/Dead2/zlib-ng) by Hans Kristian Rosbach.| +|[zlib](https://zlib.net/)|zlib|`MZ_ZLIB`|Written by Mark Adler and Jean-loup Gailly. Or alternatively, [zlib-ng](https://github.com/zlib-ng/zlib-ng) by Hans Kristian Rosbach.| |[zstd](https://github.com/facebook/zstd)|[BSD](https://github.com/facebook/zstd/blob/dev/LICENSE)|`MZ_ZSTD`|Written by Facebook.| This project uses the zlib [license](LICENSE). @@ -114,4 +110,4 @@ Thanks go out to all the people who have taken the time to contribute code revie Thanks to [Gilles Vollant](https://www.winimage.com/zLibDll/minizip.html) on which this work is originally based on. -The [ZIP format](https://github.com/nmoinvaz/minizip/blob/master/doc/zip/appnote.txt) was defined by Phil Katz of PKWARE. +The [ZIP format](https://github.com/zlib-ng/minizip-ng/blob/master/doc/zip/appnote.txt) was defined by Phil Katz of PKWARE. diff --git a/doc/README.md b/doc/README.md index 60a0f88..c8838f8 100644 --- a/doc/README.md +++ b/doc/README.md @@ -1,4 +1,4 @@ -# Minizip Documentation +# minizip-ng Documentation ### Table of Contents @@ -117,7 +117,7 @@ instance, some #defines will have to be set as they have changed. ||MZ_ZIP_NO_COMPRESSION|Intended to reduce compilation size if not using zipping functionality.| ||MZ_ZIP_NO_COMPRESSION|Intended to reduce compilation size if not using zipping functionality.| -At a minimum HAVE_ZLIB and HAVE_PKCRYPT will be necessary to be defined for drop-in replacement. To determine which files to drop in, see the Contents section of the [README](https://github.com/nmoinvaz/minizip/blob/master/README.md). +At a minimum HAVE_ZLIB and HAVE_PKCRYPT will be necessary to be defined for drop-in replacement. To determine which files to drop in, see the Contents section of the [README](https://github.com/zlib-ng/minizip-ng/blob/master/README.md). The compatibility layer for 1.x does not currently provide support for the `ioapi` interface; it has been replaced with a new streaming interface. It is possible to create a stream interface in a similar way that you would have created an ioapi interface. @@ -125,7 +125,7 @@ The compatibility layer for 1.x does not currently provide support for the `ioap ### WinZip AES -When compressing an archive with WinZIP AES enabled, by default it uses 256 bit encryption. During decompression minizip will use whatever bit encryption was specified when the entry was added to the archive. +When compressing an archive with WinZIP AES enabled, by default it uses 256 bit encryption. During decompression whatever bit encryption was specified when the entry was added to the archive will be used. WinZip AES encryption uses CTR on top of ECB which prevents identical ciphertext blocks that might occur when using ECB by itself. More details about the WinZIP AES format can be found in the [winzip documentation](zip/winzip_aes.md). diff --git a/doc/mz_compress_level.md b/doc/mz_compress_level.md index 3875de8..9a859b2 100644 --- a/doc/mz_compress_level.md +++ b/doc/mz_compress_level.md @@ -1,6 +1,6 @@ # MZ_COMPRESS_LEVEL -Minizip compression level enumeration. +Compression level enumeration. |Name|Code|Description| |-|-|-| diff --git a/doc/mz_compress_method.md b/doc/mz_compress_method.md index e0d54c8..9dae2c1 100644 --- a/doc/mz_compress_method.md +++ b/doc/mz_compress_method.md @@ -1,6 +1,6 @@ # MZ_COMPRESS_METHOD -Minizip compression method enumeration. +Compression method enumeration. |Name|Code|Description| |-|-|-| diff --git a/doc/mz_encoding.md b/doc/mz_encoding.md index 73b280a..8513fb8 100644 --- a/doc/mz_encoding.md +++ b/doc/mz_encoding.md @@ -1,6 +1,6 @@ # MZ_ENCODING -Minizip character encoding enumeration. Older zip files may store the filename in a different character encoding. +Character encoding enumeration. Older zip files may store the filename in a different character encoding. |Name|Code|Description| |-|-|-| diff --git a/doc/mz_error.md b/doc/mz_error.md index 2fd0205..5ce5258 100644 --- a/doc/mz_error.md +++ b/doc/mz_error.md @@ -1,6 +1,6 @@ # MZ_ERROR -Minizip error enumeration. These errors codes are compatible with and extend zlib error codes. +Error code enumeration. These errors codes are compatible with and extend zlib error codes. |Name|Code|Description| |-|-|-| diff --git a/doc/mz_hash.md b/doc/mz_hash.md index 348aa9e..fa1cb6f 100644 --- a/doc/mz_hash.md +++ b/doc/mz_hash.md @@ -1,6 +1,6 @@ # MZ_HASH -Minizip hash algorithm enumeration. The _mz_zip_reader_ and _mz_zip_writer_ instances support storing more secure hash algorithms for each zip entry. +Hash algorithm enumeration. The _mz_zip_reader_ and _mz_zip_writer_ instances support storing more secure hash algorithms for each zip entry. |Name|Code|Description| |-|-|-| diff --git a/doc/mz_host_system.md b/doc/mz_host_system.md index f721f91..f9c828e 100644 --- a/doc/mz_host_system.md +++ b/doc/mz_host_system.md @@ -1,6 +1,6 @@ # MZ_HOST_SYSTEM -Minizip host system enumeration. These values correspond to section 4.4.2.2 of the [PKWARE zip app note](zip/appnote.txt). +Host system enumeration. These values correspond to section 4.4.2.2 of the [PKWARE zip app note](zip/appnote.txt). |Name|Code|Description| |-|-|-| diff --git a/doc/mz_open_mode.md b/doc/mz_open_mode.md index c15d45e..b1d01fb 100644 --- a/doc/mz_open_mode.md +++ b/doc/mz_open_mode.md @@ -1,6 +1,6 @@ # MZ_OPEN -Minizip stream open flag enumeration. +Stream open flag enumeration. |Name|Code|Description| |-|-|-| diff --git a/doc/mz_seek.md b/doc/mz_seek.md index 72f6202..8071c25 100644 --- a/doc/mz_seek.md +++ b/doc/mz_seek.md @@ -1,6 +1,6 @@ # MZ_SEEK -Minizip stream seek origin enumeration. +Stream seek origin enumeration. |Name|Code|Description| |-|-|-| diff --git a/doc/mz_zip.md b/doc/mz_zip.md index 34456c9..388ba86 100644 --- a/doc/mz_zip.md +++ b/doc/mz_zip.md @@ -509,7 +509,7 @@ if (mz_zip_entry_is_open(zip_handle) == MZ_OK) Opens for reading the current entry in the zip file. To navigate to an entry use _mz_zip_goto_first_entry_, _mz_zip_goto_next_entry_, or _mz_zip_locate_entry_. -Normally, when reading from a zip entry, the minizip library will automatically decrypt and decompress the entry data. To read the raw zip entry data, set the raw parameter to 1. This is useful if you want access to the raw gzip data (assuming the entry is gzip compressed). +Normally, when reading from a zip entry, the data will be automatically decrypted and decompressed. To read the raw zip entry data, set the raw parameter to 1. This is useful if you want access to the raw gzip data (assuming the entry is gzip compressed). **Arguments** |Type|Name|Description| diff --git a/doc/mz_zip64.md b/doc/mz_zip64.md index 0bc6df5..adb39b5 100644 --- a/doc/mz_zip64.md +++ b/doc/mz_zip64.md @@ -1,6 +1,6 @@ # MZ_ZIP64 -Minizip zip64 mode enumeration. The zip64 extension is documented in [PKWARE zip app note](zip/appnote.txt) section 4.5.3 and provides support for zip files and entries greater than 4GB. These modes are only supported while writing a zip entry. +Zip64 mode enumeration. The zip64 extension is documented in [PKWARE zip app note](zip/appnote.txt) section 4.5.3 and provides support for zip files and entries greater than 4GB. These modes are only supported while writing a zip entry. |Name|Code|Description| |-|-|-| diff --git a/doc/mz_zip_file.md b/doc/mz_zip_file.md index 3e73490..d0b83d5 100644 --- a/doc/mz_zip_file.md +++ b/doc/mz_zip_file.md @@ -1,6 +1,6 @@ # MZ_ZIP_FILE -Minizip zip entry information structure. The _mz_zip_file_ structure is populated when reading zip entry information and can be used to populate zip entry information when writing zip entries. +Zip entry information structure. The _mz_zip_file_ structure is populated when reading zip entry information and can be used to populate zip entry information when writing zip entries. |Type|Name|Description|[PKWARE zip app note](zip/appnote.txt) section| |-|-|-|-| diff --git a/minigzip.c b/minigzip.c index a7890c6..0bd8c79 100644 --- a/minigzip.c +++ b/minigzip.c @@ -1,8 +1,8 @@ /* minigzip.c - part of the MiniZip project + part of the minizip-ng project - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + Copyright (C) 2010-2021 Nathan Moinvaziri + https://github.com/zlib-ng/minizip-ng This program is distributed under the terms of the same license as zlib. See the accompanying LICENSE file for the full text of the license. @@ -28,7 +28,7 @@ int32_t minigzip_help(void); /***************************************************************************/ int32_t minigzip_banner(void) { - printf("Minigzip %s - https://github.com/nmoinvaz/minizip\n", MZ_VERSION); + printf("Minigzip %s - https://github.com/zlib-ng/minizip-ng\n", MZ_VERSION); printf("---------------------------------------------------\n"); return MZ_OK; } diff --git a/minizip.c b/minizip.c index 3881930..01bb559 100644 --- a/minizip.c +++ b/minizip.c @@ -1,8 +1,8 @@ /* minizip.c - part of the MiniZip project + part of the minizip-ng project - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + Copyright (C) 2010-2021 Nathan Moinvaziri + https://github.com/zlib-ng/minizip-ng Copyright (C) 1998-2010 Gilles Vollant https://www.winimage.com/zLibDll/minizip.html @@ -62,7 +62,7 @@ int32_t minizip_erase(const char *src_path, const char *target_path, int32_t arg /***************************************************************************/ int32_t minizip_banner(void) { - printf("Minizip %s - https://github.com/nmoinvaz/minizip\n", MZ_VERSION); + printf("minizip-ng %s - https://github.com/zlib-ng/minizip-ng\n", MZ_VERSION); printf("---------------------------------------------------\n"); return MZ_OK; } diff --git a/mz.h b/mz.h index 8b938c1..d316c14 100644 --- a/mz.h +++ b/mz.h @@ -1,8 +1,8 @@ /* mz.h -- Errors codes, zip flags and magic - part of the MiniZip project + part of the minizip-ng project - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + Copyright (C) 2010-2021 Nathan Moinvaziri + https://github.com/zlib-ng/minizip-ng This program is distributed under the terms of the same license as zlib. See the accompanying LICENSE file for the full text of the license. diff --git a/mz_compat.c b/mz_compat.c index 119db36..3195a4e 100644 --- a/mz_compat.c +++ b/mz_compat.c @@ -1,8 +1,8 @@ /* mz_compat.c -- Backwards compatible interface for older versions - part of the MiniZip project + part of the minizip-ng project - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + Copyright (C) 2010-2021 Nathan Moinvaziri + https://github.com/zlib-ng/minizip-ng Copyright (C) 1998-2010 Gilles Vollant https://www.winimage.com/zLibDll/minizip.html diff --git a/mz_compat.h b/mz_compat.h index 1c761eb..a2c6d6a 100644 --- a/mz_compat.h +++ b/mz_compat.h @@ -1,8 +1,8 @@ /* mz_compat.h -- Backwards compatible interface for older versions - part of the MiniZip project + part of the minizip-ng project - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + Copyright (C) 2010-2021 Nathan Moinvaziri + https://github.com/zlib-ng/minizip-ng Copyright (C) 1998-2010 Gilles Vollant https://www.winimage.com/zLibDll/minizip.html diff --git a/mz_crypt.c b/mz_crypt.c index 39338d5..dd2cd42 100644 --- a/mz_crypt.c +++ b/mz_crypt.c @@ -1,8 +1,8 @@ /* mz_crypt.c -- Crypto/hash functions - part of the MiniZip project + part of the minizip-ng project - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + Copyright (C) 2010-2021 Nathan Moinvaziri + https://github.com/zlib-ng/minizip-ng This program is distributed under the terms of the same license as zlib. See the accompanying LICENSE file for the full text of the license. diff --git a/mz_crypt.h b/mz_crypt.h index 3a92c10..59a193c 100644 --- a/mz_crypt.h +++ b/mz_crypt.h @@ -1,8 +1,8 @@ /* mz_crypt.h -- Crypto/hash functions - part of the MiniZip project + part of the minizip-ng project - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + Copyright (C) 2010-2021 Nathan Moinvaziri + https://github.com/zlib-ng/minizip-ng This program is distributed under the terms of the same license as zlib. See the accompanying LICENSE file for the full text of the license. diff --git a/mz_crypt_apple.c b/mz_crypt_apple.c index 9cdbc60..4519753 100644 --- a/mz_crypt_apple.c +++ b/mz_crypt_apple.c @@ -1,8 +1,8 @@ /* mz_crypt_apple.c -- Crypto/hash functions for Apple - part of the MiniZip project + part of the minizip-ng project - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + Copyright (C) 2010-2021 Nathan Moinvaziri + https://github.com/zlib-ng/minizip-ng This program is distributed under the terms of the same license as zlib. See the accompanying LICENSE file for the full text of the license. diff --git a/mz_crypt_openssl.c b/mz_crypt_openssl.c index fff9c8f..e0db8d7 100644 --- a/mz_crypt_openssl.c +++ b/mz_crypt_openssl.c @@ -1,8 +1,8 @@ /* mz_crypt_openssl.c -- Crypto/hash functions for OpenSSL - part of the MiniZip project + part of the minizip-ng project - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + Copyright (C) 2010-2021 Nathan Moinvaziri + https://github.com/zlib-ng/minizip-ng This program is distributed under the terms of the same license as zlib. See the accompanying LICENSE file for the full text of the license. diff --git a/mz_crypt_win32.c b/mz_crypt_win32.c index 4acc970..6ec6a84 100644 --- a/mz_crypt_win32.c +++ b/mz_crypt_win32.c @@ -1,8 +1,8 @@ /* mz_crypt_win32.c -- Crypto/hash functions for Windows - part of the MiniZip project + part of the minizip-ng project - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + Copyright (C) 2010-2021 Nathan Moinvaziri + https://github.com/zlib-ng/minizip-ng This program is distributed under the terms of the same license as zlib. See the accompanying LICENSE file for the full text of the license. diff --git a/mz_os.c b/mz_os.c index aa5792d..f96befe 100644 --- a/mz_os.c +++ b/mz_os.c @@ -1,8 +1,8 @@ /* mz_os.c -- System functions - part of the MiniZip project + part of the minizip-ng project - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + Copyright (C) 2010-2021 Nathan Moinvaziri + https://github.com/zlib-ng/minizip-ng Copyright (C) 1998-2010 Gilles Vollant https://www.winimage.com/zLibDll/minizip.html diff --git a/mz_os.h b/mz_os.h index 09c11d3..b3e2a58 100644 --- a/mz_os.h +++ b/mz_os.h @@ -1,8 +1,8 @@ /* mz_os.h -- System functions - part of the MiniZip project + part of the minizip-ng project - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + Copyright (C) 2010-2021 Nathan Moinvaziri + https://github.com/zlib-ng/minizip-ng This program is distributed under the terms of the same license as zlib. See the accompanying LICENSE file for the full text of the license. diff --git a/mz_os_posix.c b/mz_os_posix.c index e4671bd..576943d 100644 --- a/mz_os_posix.c +++ b/mz_os_posix.c @@ -1,8 +1,8 @@ /* mz_os_posix.c -- System functions for posix - part of the MiniZip project + part of the minizip-ng project - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + Copyright (C) 2010-2021 Nathan Moinvaziri + https://github.com/zlib-ng/minizip-ng This program is distributed under the terms of the same license as zlib. See the accompanying LICENSE file for the full text of the license. diff --git a/mz_os_win32.c b/mz_os_win32.c index b196a18..7effef7 100644 --- a/mz_os_win32.c +++ b/mz_os_win32.c @@ -1,8 +1,8 @@ /* mz_os_win32.c -- System functions for Windows - part of the MiniZip project + part of the minizip-ng project - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + Copyright (C) 2010-2021 Nathan Moinvaziri + https://github.com/zlib-ng/minizip-ng This program is distributed under the terms of the same license as zlib. See the accompanying LICENSE file for the full text of the license. diff --git a/mz_strm.c b/mz_strm.c index 223fda6..da7d587 100644 --- a/mz_strm.c +++ b/mz_strm.c @@ -1,8 +1,8 @@ /* mz_strm.c -- Stream interface - part of the MiniZip project + part of the minizip-ng project - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + Copyright (C) 2010-2021 Nathan Moinvaziri + https://github.com/zlib-ng/minizip-ng This program is distributed under the terms of the same license as zlib. See the accompanying LICENSE file for the full text of the license. diff --git a/mz_strm.h b/mz_strm.h index a46d8ac..8b0027c 100644 --- a/mz_strm.h +++ b/mz_strm.h @@ -1,8 +1,8 @@ /* mz_strm.h -- Stream interface - part of the MiniZip project + part of the minizip-ng project - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + Copyright (C) 2010-2021 Nathan Moinvaziri + https://github.com/zlib-ng/minizip-ng This program is distributed under the terms of the same license as zlib. See the accompanying LICENSE file for the full text of the license. diff --git a/mz_strm_buf.c b/mz_strm_buf.c index 333a78a..1dfdfdf 100644 --- a/mz_strm_buf.c +++ b/mz_strm_buf.c @@ -1,10 +1,10 @@ /* mz_strm_buf.c -- Stream for buffering reads/writes - part of the MiniZip project + part of the minizip-ng project This version of ioapi is designed to buffer IO. - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + Copyright (C) 2010-2021 Nathan Moinvaziri + https://github.com/zlib-ng/minizip-ng This program is distributed under the terms of the same license as zlib. See the accompanying LICENSE file for the full text of the license. diff --git a/mz_strm_buf.h b/mz_strm_buf.h index 4a62adc..b71e6e4 100644 --- a/mz_strm_buf.h +++ b/mz_strm_buf.h @@ -1,10 +1,10 @@ /* mz_strm_buf.h -- Stream for buffering reads/writes - part of the MiniZip project + part of the minizip-ng project This version of ioapi is designed to buffer IO. - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + Copyright (C) 2010-2021 Nathan Moinvaziri + https://github.com/zlib-ng/minizip-ng This program is distributed under the terms of the same license as zlib. See the accompanying LICENSE file for the full text of the license. diff --git a/mz_strm_bzip.c b/mz_strm_bzip.c index 8a514db..31d8bf9 100644 --- a/mz_strm_bzip.c +++ b/mz_strm_bzip.c @@ -1,8 +1,8 @@ /* mz_strm_bzip.c -- Stream for bzip inflate/deflate - part of the MiniZip project + part of the minizip-ng project - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + Copyright (C) 2010-2021 Nathan Moinvaziri + https://github.com/zlib-ng/minizip-ng This program is distributed under the terms of the same license as zlib. See the accompanying LICENSE file for the full text of the license. diff --git a/mz_strm_bzip.h b/mz_strm_bzip.h index f0b9588..71b2b38 100644 --- a/mz_strm_bzip.h +++ b/mz_strm_bzip.h @@ -1,8 +1,8 @@ /* mz_strm_bzip.h -- Stream for bzip inflate/deflate - part of the MiniZip project + part of the minizip-ng project - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + Copyright (C) 2010-2021 Nathan Moinvaziri + https://github.com/zlib-ng/minizip-ng This program is distributed under the terms of the same license as zlib. See the accompanying LICENSE file for the full text of the license. diff --git a/mz_strm_libcomp.c b/mz_strm_libcomp.c index f016b74..27eb933 100644 --- a/mz_strm_libcomp.c +++ b/mz_strm_libcomp.c @@ -1,8 +1,8 @@ /* mz_strm_libcomp.c -- Stream for apple compression - part of the MiniZip project + part of the minizip-ng project - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + Copyright (C) 2010-2021 Nathan Moinvaziri + https://github.com/zlib-ng/minizip-ng This program is distributed under the terms of the same license as zlib. See the accompanying LICENSE file for the full text of the license. diff --git a/mz_strm_libcomp.h b/mz_strm_libcomp.h index ddc4abd..5c3fee8 100644 --- a/mz_strm_libcomp.h +++ b/mz_strm_libcomp.h @@ -1,8 +1,8 @@ /* mz_strm_libcomp.h -- Stream for apple compression - part of the MiniZip project + part of the minizip-ng project - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + Copyright (C) 2010-2021 Nathan Moinvaziri + https://github.com/zlib-ng/minizip-ng This program is distributed under the terms of the same license as zlib. See the accompanying LICENSE file for the full text of the license. diff --git a/mz_strm_lzma.c b/mz_strm_lzma.c index bc34d37..22fb972 100644 --- a/mz_strm_lzma.c +++ b/mz_strm_lzma.c @@ -1,8 +1,8 @@ /* mz_strm_lzma.c -- Stream for lzma inflate/deflate - part of the MiniZip project + part of the minizip-ng project - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + Copyright (C) 2010-2021 Nathan Moinvaziri + https://github.com/zlib-ng/minizip-ng This program is distributed under the terms of the same license as zlib. See the accompanying LICENSE file for the full text of the license. diff --git a/mz_strm_lzma.h b/mz_strm_lzma.h index 301e25c..f447baa 100644 --- a/mz_strm_lzma.h +++ b/mz_strm_lzma.h @@ -1,8 +1,8 @@ /* mz_strm_lzma.h -- Stream for lzma inflate/deflate - part of the MiniZip project + part of the minizip-ng project - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + Copyright (C) 2010-2021 Nathan Moinvaziri + https://github.com/zlib-ng/minizip-ng This program is distributed under the terms of the same license as lzma. See the accompanying LICENSE file for the full text of the license. diff --git a/mz_strm_mem.c b/mz_strm_mem.c index 9091b79..f4a882d 100644 --- a/mz_strm_mem.c +++ b/mz_strm_mem.c @@ -1,13 +1,13 @@ /* mz_strm_mem.c -- Stream for memory access - part of the MiniZip project + part of the minizip-ng project This interface is designed to access memory rather than files. We do use a region of memory to put data in to and take it out of. Based on Unzip ioapi.c version 0.22, May 19th, 2003 - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + Copyright (C) 2010-2021 Nathan Moinvaziri + https://github.com/zlib-ng/minizip-ng Copyright (C) 2003 Justin Fletcher Copyright (C) 1998-2003 Gilles Vollant https://www.winimage.com/zLibDll/minizip.html diff --git a/mz_strm_mem.h b/mz_strm_mem.h index 8a829c3..5bfa13d 100644 --- a/mz_strm_mem.h +++ b/mz_strm_mem.h @@ -1,8 +1,8 @@ /* mz_strm_mem.h -- Stream for memory access - part of MiniZip project + part of the minizip-ng project - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + Copyright (C) 2010-2021 Nathan Moinvaziri + https://github.com/zlib-ng/minizip-ng This program is distributed under the terms of the same license as zlib. See the accompanying LICENSE file for the full text of the license. diff --git a/mz_strm_os.h b/mz_strm_os.h index a9c630b..614e255 100644 --- a/mz_strm_os.h +++ b/mz_strm_os.h @@ -1,8 +1,8 @@ /* mz_sstrm_os.h -- Stream for filesystem access - part of the MiniZip project + part of the minizip-ng project - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + Copyright (C) 2010-2021 Nathan Moinvaziri + https://github.com/zlib-ng/minizip-ng This program is distributed under the terms of the same license as zlib. See the accompanying LICENSE file for the full text of the license. diff --git a/mz_strm_os_posix.c b/mz_strm_os_posix.c index bfc3c4f..f0b5bd3 100644 --- a/mz_strm_os_posix.c +++ b/mz_strm_os_posix.c @@ -1,8 +1,8 @@ /* mz_strm_posix.c -- Stream for filesystem access for posix/linux - part of the MiniZip project + part of the minizip-ng project - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + Copyright (C) 2010-2021 Nathan Moinvaziri + https://github.com/zlib-ng/minizip-ng Modifications for Zip64 support Copyright (C) 2009-2010 Mathias Svensson http://result42.com diff --git a/mz_strm_os_win32.c b/mz_strm_os_win32.c index 3f8d97a..893df54 100644 --- a/mz_strm_os_win32.c +++ b/mz_strm_os_win32.c @@ -1,8 +1,8 @@ /* mz_strm_win32.c -- Stream for filesystem access for windows - part of the MiniZip project + part of the minizip-ng project - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + Copyright (C) 2010-2021 Nathan Moinvaziri + https://github.com/zlib-ng/minizip-ng Copyright (C) 2009-2010 Mathias Svensson Modifications for Zip64 support http://result42.com diff --git a/mz_strm_pkcrypt.c b/mz_strm_pkcrypt.c index a49dad1..41c762f 100644 --- a/mz_strm_pkcrypt.c +++ b/mz_strm_pkcrypt.c @@ -1,8 +1,8 @@ /* mz_strm_pkcrypt.c -- Code for traditional PKWARE encryption - part of the MiniZip project + part of the minizip-ng project - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + Copyright (C) 2010-2021 Nathan Moinvaziri + https://github.com/zlib-ng/minizip-ng Copyright (C) 1998-2005 Gilles Vollant Modifications for Info-ZIP crypting https://www.winimage.com/zLibDll/minizip.html diff --git a/mz_strm_pkcrypt.h b/mz_strm_pkcrypt.h index 3d5215c..453f1f9 100644 --- a/mz_strm_pkcrypt.h +++ b/mz_strm_pkcrypt.h @@ -1,8 +1,8 @@ /* mz_strm_pkcrypt.h -- Code for traditional PKWARE encryption - part of the MiniZip project + part of the minizip-ng project - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + Copyright (C) 2010-2021 Nathan Moinvaziri + https://github.com/zlib-ng/minizip-ng This program is distributed under the terms of the same license as zlib. See the accompanying LICENSE file for the full text of the license. diff --git a/mz_strm_split.c b/mz_strm_split.c index 7f76393..12c8bda 100644 --- a/mz_strm_split.c +++ b/mz_strm_split.c @@ -1,8 +1,8 @@ /* mz_strm_split.c -- Stream for split files - part of the MiniZip project + part of the minizip-ng project - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + Copyright (C) 2010-2021 Nathan Moinvaziri + https://github.com/zlib-ng/minizip-ng This program is distributed under the terms of the same license as zlib. See the accompanying LICENSE file for the full text of the license. diff --git a/mz_strm_split.h b/mz_strm_split.h index 57f3917..da404da 100644 --- a/mz_strm_split.h +++ b/mz_strm_split.h @@ -1,8 +1,8 @@ /* mz_strm_split.h -- Stream for split files - part of MiniZip project + part of the minizip-ng project - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + Copyright (C) 2010-2021 Nathan Moinvaziri + https://github.com/zlib-ng/minizip-ng This program is distributed under the terms of the same license as zlib. See the accompanying LICENSE file for the full text of the license. diff --git a/mz_strm_wzaes.c b/mz_strm_wzaes.c index b5f6aa5..fd01199 100644 --- a/mz_strm_wzaes.c +++ b/mz_strm_wzaes.c @@ -1,8 +1,8 @@ /* mz_strm_wzaes.c -- Stream for WinZip AES encryption - part of the MiniZip project + part of the minizip-ng project - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + Copyright (C) 2010-2021 Nathan Moinvaziri + https://github.com/zlib-ng/minizip-ng Copyright (C) 1998-2010 Brian Gladman, Worcester, UK This program is distributed under the terms of the same license as zlib. diff --git a/mz_strm_wzaes.h b/mz_strm_wzaes.h index 2ddf125..e27f112 100644 --- a/mz_strm_wzaes.h +++ b/mz_strm_wzaes.h @@ -1,8 +1,8 @@ /* mz_strm_wzaes.h -- Stream for WinZIP AES encryption - part of the MiniZip project + part of the minizip-ng project - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + Copyright (C) 2010-2021 Nathan Moinvaziri + https://github.com/zlib-ng/minizip-ng This program is distributed under the terms of the same license as zlib. See the accompanying LICENSE file for the full text of the license. diff --git a/mz_strm_zlib.c b/mz_strm_zlib.c index ce718b5..e83bbac 100644 --- a/mz_strm_zlib.c +++ b/mz_strm_zlib.c @@ -1,8 +1,8 @@ /* mz_strm_zlib.c -- Stream for zlib inflate/deflate - part of the MiniZip project + part of the minizip-ng project - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + Copyright (C) 2010-2021 Nathan Moinvaziri + https://github.com/zlib-ng/minizip-ng This program is distributed under the terms of the same license as zlib. See the accompanying LICENSE file for the full text of the license. diff --git a/mz_strm_zlib.h b/mz_strm_zlib.h index 8afb857..47f7480 100644 --- a/mz_strm_zlib.h +++ b/mz_strm_zlib.h @@ -1,8 +1,8 @@ /* mz_strm_zlib.h -- Stream for zlib inflate/deflate - part of the MiniZip project + part of the minizip-ng project - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + Copyright (C) 2010-2021 Nathan Moinvaziri + https://github.com/zlib-ng/minizip-ng This program is distributed under the terms of the same license as zlib. See the accompanying LICENSE file for the full text of the license. diff --git a/mz_strm_zstd.c b/mz_strm_zstd.c index 40fe11b..4c9c335 100644 --- a/mz_strm_zstd.c +++ b/mz_strm_zstd.c @@ -1,8 +1,8 @@ /* mz_strm_zstd.c -- Stream for zstd compress/decompress - part of the MiniZip project + part of the minizip-ng project - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + Copyright (C) 2010-2021 Nathan Moinvaziri + https://github.com/zlib-ng/minizip-ng Authors: Force Charlie https://github.com/fcharlie diff --git a/mz_strm_zstd.h b/mz_strm_zstd.h index fb7d356..3587083 100644 --- a/mz_strm_zstd.h +++ b/mz_strm_zstd.h @@ -1,9 +1,9 @@ /* mz_strm_zlib.h -- Stream for zlib inflate/deflate Version 2.9.2, February 12, 2020 - part of the MiniZip project + part of the minizip-ng project - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + Copyright (C) 2010-2021 Nathan Moinvaziri + https://github.com/zlib-ng/minizip-ng This program is distributed under the terms of the same license as zlib. See the accompanying LICENSE file for the full text of the license. diff --git a/mz_zip.c b/mz_zip.c index 773cd72..8c6b485 100644 --- a/mz_zip.c +++ b/mz_zip.c @@ -1,8 +1,8 @@ /* zip.c -- Zip manipulation - part of the MiniZip project + part of the minizip-ng project - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + Copyright (C) 2010-2021 Nathan Moinvaziri + https://github.com/zlib-ng/minizip-ng Copyright (C) 2009-2010 Mathias Svensson Modifications for Zip64 support http://result42.com diff --git a/mz_zip.h b/mz_zip.h index 9f1ffdc..e3d1fbd 100644 --- a/mz_zip.h +++ b/mz_zip.h @@ -1,8 +1,8 @@ /* mz_zip.h -- Zip manipulation - part of the MiniZip project + part of the minizip-ng project - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + Copyright (C) 2010-2021 Nathan Moinvaziri + https://github.com/zlib-ng/minizip-ng Copyright (C) 2009-2010 Mathias Svensson Modifications for Zip64 support http://result42.com diff --git a/mz_zip_rw.c b/mz_zip_rw.c index e992cc3..5dde882 100644 --- a/mz_zip_rw.c +++ b/mz_zip_rw.c @@ -1,8 +1,8 @@ /* mz_zip_rw.c -- Zip reader/writer - part of the MiniZip project + part of the minizip-ng project - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + Copyright (C) 2010-2021 Nathan Moinvaziri + https://github.com/zlib-ng/minizip-ng This program is distributed under the terms of the same license as zlib. See the accompanying LICENSE file for the full text of the license. diff --git a/mz_zip_rw.h b/mz_zip_rw.h index 63d7f4c..0957d0e 100644 --- a/mz_zip_rw.h +++ b/mz_zip_rw.h @@ -1,8 +1,8 @@ /* mz_zip_rw.h -- Zip reader/writer - part of the MiniZip project + part of the minizip-ng project - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + Copyright (C) 2010-2021 Nathan Moinvaziri + https://github.com/zlib-ng/minizip-ng This program is distributed under the terms of the same license as zlib. See the accompanying LICENSE file for the full text of the license. diff --git a/test/fuzz/standalone.c b/test/fuzz/standalone.c index 700c80c..95c0c54 100644 --- a/test/fuzz/standalone.c +++ b/test/fuzz/standalone.c @@ -1,10 +1,10 @@ /* standalone.c - Standalone fuzzer tester - part of the MiniZip project + part of the minizip-ng project Copyright (C) 2018 sebpop https://github.com/sebpop Copyright (C) 2018-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + https://github.com/zlib-ng/minizip-ng This program is distributed under the terms of the same license as zlib. See the accompanying LICENSE file for the full text of the license. diff --git a/test/fuzz/unzip_fuzzer.c b/test/fuzz/unzip_fuzzer.c index 1e8c799..355a84b 100644 --- a/test/fuzz/unzip_fuzzer.c +++ b/test/fuzz/unzip_fuzzer.c @@ -1,10 +1,10 @@ /* unzip_fuzzer.c - Unzip fuzzer for libFuzzer - part of the MiniZip project + part of the minizip-ng project Copyright (C) 2018 The Chromium Authors Copyright (C) 2018 Anand K. Mistry Copyright (C) 2018-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + https://github.com/zlib-ng/minizip-ng This program is distributed under the terms of the same license as zlib. See the accompanying LICENSE file for the full text of the license. diff --git a/test/fuzz/zip_fuzzer.c b/test/fuzz/zip_fuzzer.c index 79b4a0b..bf4582c 100644 --- a/test/fuzz/zip_fuzzer.c +++ b/test/fuzz/zip_fuzzer.c @@ -1,10 +1,10 @@ /* zip_fuzzer.c - Zip fuzzer for libFuzzer - part of the MiniZip project + part of the minizip-ng project Copyright (C) 2018 The Chromium Authors Copyright (C) 2018 Anand K. Mistry Copyright (C) 2018-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + https://github.com/zlib-ng/minizip-ng This program is distributed under the terms of the same license as zlib. See the accompanying LICENSE file for the full text of the license. diff --git a/test/test.c b/test/test.c index 577d183..bf9e46f 100644 --- a/test/test.c +++ b/test/test.c @@ -1,8 +1,8 @@ /* test.c - Test bed area - part of the MiniZip project + part of the minizip-ng project Copyright (C) 2018-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip + https://github.com/zlib-ng/minizip-ng This program is distributed under the terms of the same license as zlib. See the accompanying LICENSE file for the full text of the license.