mirror of
https://github.com/zlib-ng/minizip-ng
synced 2025-03-28 21:13:18 +00:00
Updated name of project to minizip-ng.
This commit is contained in:
parent
14f45f97c2
commit
db95894646
@ -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\
|
||||
|
30
README.md
30
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.
|
||||
|
||||
[](https://github.com/nmoinvaz/minizip/actions)
|
||||
[](https://github.com/zlib-ng/minizip-ng/actions)
|
||||
[](https://bugs.chromium.org/p/oss-fuzz/issues/list?sort=-opened&can=1&q=proj:minizip)
|
||||
[](https://www.codacy.com/manual/nmoinvaz/minizip?utm_source=github.com&utm_medium=referral&utm_content=nmoinvaz/minizip&utm_campaign=Badge_Grade)
|
||||
[](https://www.codefactor.io/repository/github/nmoinvaz/minizip)
|
||||
[](https://github.com/nmoinvaz/minizip/blob/master/LICENSE)
|
||||
[](https://github.com/zlib-ng/minizip-ng/blob/master/LICENSE)
|
||||
[](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.
|
||||
|
@ -1,4 +1,4 @@
|
||||
# Minizip Documentation <!-- omit in toc -->
|
||||
# minizip-ng Documentation <!-- omit in toc -->
|
||||
|
||||
### 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 <!-- omit in toc -->
|
||||
|
||||
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).
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
# MZ_COMPRESS_LEVEL
|
||||
|
||||
Minizip compression level enumeration.
|
||||
Compression level enumeration.
|
||||
|
||||
|Name|Code|Description|
|
||||
|-|-|-|
|
||||
|
@ -1,6 +1,6 @@
|
||||
# MZ_COMPRESS_METHOD
|
||||
|
||||
Minizip compression method enumeration.
|
||||
Compression method enumeration.
|
||||
|
||||
|Name|Code|Description|
|
||||
|-|-|-|
|
||||
|
@ -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|
|
||||
|-|-|-|
|
||||
|
@ -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|
|
||||
|-|-|-|
|
||||
|
@ -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|
|
||||
|-|-|-|
|
||||
|
@ -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|
|
||||
|-|-|-|
|
||||
|
@ -1,6 +1,6 @@
|
||||
# MZ_OPEN
|
||||
|
||||
Minizip stream open flag enumeration.
|
||||
Stream open flag enumeration.
|
||||
|
||||
|Name|Code|Description|
|
||||
|-|-|-|
|
||||
|
@ -1,6 +1,6 @@
|
||||
# MZ_SEEK
|
||||
|
||||
Minizip stream seek origin enumeration.
|
||||
Stream seek origin enumeration.
|
||||
|
||||
|Name|Code|Description|
|
||||
|-|-|-|
|
||||
|
@ -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|
|
||||
|
@ -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|
|
||||
|-|-|-|
|
||||
|
@ -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|
|
||||
|-|-|-|-|
|
||||
|
@ -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;
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
||||
|
6
mz.h
6
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.
|
||||
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
6
mz_os.c
6
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
|
||||
|
||||
|
6
mz_os.h
6
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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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
|
||||
|
||||
|
@ -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.
|
||||
|
6
mz_zip.c
6
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
|
||||
|
6
mz_zip.h
6
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
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user