Allow greater buffer to be passed in for hashing functions.
Fixed crc32 values not being stored in zip.
When reading zip get best hash to test against in signature.
Fixed formatting.
Added create/delete functions for zip class.
Simplify locating an entry by filename.
Added more advanced functions for locating an entry based on callback decision.
Change default mem grow size to 64kb since we have unzOpen_MZ and zipOpen_MZ. #283
Check current entry when locating entry before starting from first entry.
Added function to determine if entry has been opened.
Return error if can't find eocd otherwise any file will be considered open successfully.
```
mz_compat.c:390:62: warning: passing 'uint32_t *' (aka 'unsigned int *') to parameter of type
'int32_t *' (aka 'int *') converts between pointers to integer types with different sign [-Wpointer-sign]
err = mz_zip_get_disk_number_with_cd(compat->handle, &pglobal_info->number_disk_with_CD);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
mz_zip.h:112:70: note: passing argument to parameter 'disk_number_with_cd' here
extern int32_t mz_zip_get_disk_number_with_cd(void *handle, int32_t *disk_number_with_cd);
^
```
* Fix NULL pointer dereference when calling zipOpen*()
or unzOpen2*() with NULL filefunc table.
* Rename dos_date to dosDate in zip/unzip structures to
be compatible with original minizip.
* Add tm struct timestamps to zip/unzip structures and
populate them with the dosDate value for unzip and
use the value passed into it on zip, if dosDate is
zero (mimicing original minizip behaviour.)
* Change zipWriteInFileInZip() return value to be a
status code (ZIP_OK or ZIP_ERRNO) instead of the
number of bytes written. This way it's minizip
compatible.
* Add zipCloseFileInZipRaw64() compatibility wrapper.
* Add these compatibility functions:
unzGetOffset()
unzGetOffset64()
unzSetOffset()
unzSetOffset64()
* Add stub for compatibility: unzGetLocalExtrafield()
It will always return zero for now.
* Add original minizip types for compatiblity:
tm_unz, tm_zip, ZPOS64_T
* Add these minizip (non-compatiblity) APIs:
mz_zip_get_entry()
mz_zip_goto_entry()
* zipOpenNewFileInZip*() to use the default filename of
"-" if filename parameter was NULL. For minizip
compatibility.
* Fix mz_zip_entry_open_int() and mz_zip_entry_read_open()
failing with MZ_PARAM_ERROR in raw mode
* Add/cleanup some date-related comments
* mz_zip_time_t_to_tm() to clear the `tm` structure in
case localtime() call failed.
* Fix mz_zip_tm_to_dosdate() to do the date validation
on the normalized date (the year in particular), not on
the raw value passed by the caller. This makes it work
correctly when year is passed as-is, such as 1990.
The reference minizip was the version that comes with
the latest zlib, currently at 1.2.11.
Added support for disk splitting into the minizip and miniunz sample apps.
Removed change_dir function from os helpers since it is no longer needed and changing dir causes problems when trying to find the next split archive.
Cleaned up #defines and pushed more into mz.h which was previously named mz.h
Removed NOUNCRYPT and NOCRYPT and instead implemented HAVE_CRYPT which can be configured via CMake USE_CRYPT.
Fixed issues unzipping non-split archives.
Fixed return value on mz_zip_entry_write.