2153 Commits

Author SHA1 Message Date
Nathan Moinvaziri
4f670cc7d7 Version 4.0.2. 4.0.2 2023-10-26 10:06:19 -07:00
pmqs
145754983c Get mz_dir_make to test for an empty path
fixes https://github.com/zlib-ng/minizip-ng/issues/737
2023-10-26 10:03:09 -07:00
Nico Rieck
26c484d7ce Fix lzma compression level #731
LZMA_PRESET_EXTREME is not a preset on its own but a flag which must be
used together with a level. The difference between level 9 with and without
the extreme flag also seems negligible, so this commit just passes through
the level and maps -1 and invalid values to the default preset.
2023-10-19 13:01:55 -07:00
Nathan Moinvaziri
0d81d2eaae Added ioapi.h shim for backwards compatibility. 2023-10-19 10:04:40 -07:00
Nathan Moinvaziri
aa4f87309d Silence warnings about BSD_SOURCE being deprecated. 2023-10-03 15:41:28 -07:00
Nick Brighten
2bfdd6e6a7 Fixed implicit conversion precision warnings
Implicit conversion loses integer precision: 'unsigned long' to 'int32_t' (aka 'int') in line 124, 145 and 534

Implicit conversion loses integer precision: 'unsigned long' to 'uint32_t' (aka 'unsigned int') in line 599
2023-09-12 12:07:35 -07:00
Leander Schulten
7cb316f28b Fix pkgconfig file for private dependencies 2023-09-12 12:05:12 -07:00
Mike Kasick
21606891ab Support compression levels >= 10 and use zstd's internal default level.
zstd supports regular compression levels 1 through 22.  The special
level 0 indicates to use zstd's internal default (currently level 3).
2023-09-12 12:03:29 -07:00
Nathan Moinvaziri
680d6f1dcf Version 4.0.1. 4.0.1 2023-08-04 11:23:54 -07:00
pmq
23945b8f43 Add sanitizers from zlib-ng
Co-authored-by: Nathan Moinvaziri <nathan@nathanm.com>
2023-07-31 10:02:18 -07:00
pmqs
693edec9fa Fix for Names truncated at 256 bytes #690
Co-authored-by: Nathan Moinvaziri <nathan@nathanm.com>
2023-07-31 10:01:33 -07:00
Nathan Moinvaziri
706737f980 Change CMake to use CheckCSourceCompiles for compatibility. #720 2023-07-31 10:01:03 -07:00
pmqs
2823bcc193 Fix memory leak in mz_zip_writer_copy_from_reader #717 2023-07-31 10:01:03 -07:00
Peter Harris
9453d4ffcf Fix zstd compression level 2023-07-08 13:30:42 -07:00
Sam James
d14fb2f294 CMake: fix SONAME for MZ_COMPAT
zlib's minizip has SONAME 1. MZ_COMPAT intends to provide ABI and API compatibility,
so its SONAME should match.

The layout with this is:
```
libminizip.so -> libminizip.so.1
libminizip.so.1 -> libminizip.so.4.0.0
libminizip.so.4.0.0
```

Signed-off-by: Sam James <sam@gentoo.org>
2023-06-27 14:19:03 -07:00
Brad Smith
57be074f6f CMake: Fix build with OpenBSD #711
Setting _POSIX_C_SOURCE on OpenBSD breaks the build. _BSD_SOURCE needs
to be set at the same time to enable some functions.

In file included from /home/brad/tmp/ffmpeg-ports/ports/pobj/minizip-4.0.0/minizip-ng-4.0.0/test/test_main.cc:5:
In file included from /usr/local/include/gtest/gtest.h:55:
In file included from /usr/include/c++/v1/ostream:140:
In file included from /usr/include/c++/v1/locale:218:
/usr/include/c++/v1/__bsd_locale_fallbacks.h:122:17: error: use of undeclared identifier 'vasprintf'; did you mean 'vsprintf'?
    int __res = vasprintf(__s, __format, __va);
                ^
/usr/include/c++/v1/cstdio:124:9: note: 'vsprintf' declared here
using ::vsprintf _LIBCPP_USING_IF_EXISTS;
        ^
In file included from /home/brad/tmp/ffmpeg-ports/ports/pobj/minizip-4.0.0/minizip-ng-4.0.0/test/test_main.cc:5:
In file included from /usr/local/include/gtest/gtest.h:55:
In file included from /usr/include/c++/v1/ostream:140:
In file included from /usr/include/c++/v1/locale:218:
/usr/include/c++/v1/__bsd_locale_fallbacks.h:122:27: error: cannot initialize a parameter of type 'char *' with an lvalue of type 'char **'
    int __res = vasprintf(__s, __format, __va);
                          ^~~
/usr/include/stdio.h:269:21: note: passing argument to parameter here
int      vsprintf(char *, const char *, __va_list);
                        ^
2 errors generated.
2023-06-11 09:47:50 -07:00
Richard Huveneers
b4affb4f9d Only return MZ_MEM_ERROR if no other error code was returned before. 2023-06-11 09:47:29 -07:00
Richard Huveneers
76daa9956f Add comment why GCM is excluded for iOS 2023-06-11 09:43:03 -07:00
Richard Huveneers
ca8181db55 Changes for TARGET_OS_IPHONE to solve issue 708 2023-06-11 09:43:00 -07:00
scribam
3da646bab3 Remove CMake POSITION_INDEPENDENT_CODE properties 2023-06-10 10:38:35 -07:00
Kyle Schwarz
382335a99e Fix cmake install location 2023-06-08 11:25:58 -07:00
Thomas Gamper
83301fc2a1 mz_os.h - fix indentation; mz_os_win32.c - adjust for utf8 strings to be represented by char*; test_encoding.cc - remove useless cast 2023-06-08 11:25:14 -07:00
Thomas Gamper
78b87216bf mz_os.md - update mz_os_utf8_string_create and mz_os_utf8_string_delete documentation 2023-06-08 11:25:14 -07:00
Thomas Gamper
0fa804504c Adjust mz_os_utf8_string_create to return char*, and mz_os_utf8_string_delete to take a char** 2023-06-08 11:25:14 -07:00
Thomas Gamper
effc920e60 mz_os_posix.c - fix warning caused by missing cast of return value of strdup 2023-06-08 11:25:14 -07:00
Thomas Gamper
a4ccb74add mz_zip.c - correctly close entry with streams other than split_stream 2023-06-07 09:53:19 -07:00
Nathan Moinvaziri
769c6f3d26 Fixed backslashes not being converted properly when adding entries #701 2023-05-29 11:31:17 -07:00
Nathan Moinvaziri
b1464d0306 Prevent uninitialized warning for key_size variable in clang. 2023-05-26 11:29:31 -07:00
Nathan Moinvaziri
a1affc15e3 Fixed GitHub warnings in CodeQL workflow. 2023-05-19 10:59:52 -07:00
Nathan Moinvaziri
a1f568d601 Version 4.0.0. 4.0.0 2023-05-19 10:27:46 -07:00
Nathan Moinvaziri
e54c61a99b Fixed no args should be in create function description in docs. 2023-05-17 16:12:16 -07:00
Sergey Markelov
1e2d77345a Fix test crypt.rand: random_bytes[0] can be 0, std::string(random_bytes)
gets empty C string.
2023-05-17 15:50:06 -07:00
Sergey Markelov
87205f4ba1 Fix undefined behavior: strict aliasing rule violations
They leaded to overriding caller's local variables.
2023-05-17 15:50:06 -07:00
Nathan Moinvaziri
e7f2b0fbcd Fixed logical-op-parentheses warning when compiling with openssl. 2023-05-15 11:38:30 -07:00
Sergey Markelov
1fdcfef544 Support AAD in AES-GCM 2023-05-05 13:53:16 -04:00
Nathan Moinvaziri
37bc3bc7de Reduce number of code coverage uploads. 2023-05-05 08:29:09 -07:00
Nathan Moinvaziri
89316d98f8 Change to latest version of macOS runners. 2023-05-05 08:21:38 -07:00
Nathan Moinvaziri
ab2d5ae928 Remove OpenSSL AES_* calls since they also first appeared in 0.9.7.
Co-authored-by: <sergio-nsk@users.noreply.github.com>
2023-05-05 07:45:28 -07:00
Nathan Moinvaziri
162ba6ab4b Fixed memory leaks when using OpenSSL 1.1 or higher. 2023-04-27 16:16:39 -07:00
Nathan Moinvaziri
762333d6e9 More clean up memory freeing in mz_crypt classes. 2023-04-27 14:38:21 -07:00
Nathan Moinvaziri
67010ceaca Fixed AESGCM for OpenSSL when IV length is < AES_BLOCKSIZE. 2023-04-27 13:55:34 -07:00
Nathan Moinvaziri
af9cb4f40d Fixed casting warning in mz_crypt_aes_decrypt_final on macOS. 2023-04-27 12:11:22 -07:00
Nathan Moinvaziri
3578541491 Use block sized IV length internally to prevent heap overflow in BCrypt. 2023-04-27 11:45:57 -07:00
Nathan Moinvaziri
dd4711c1d2 Clean up memory freeing in mz_crypt classes. 2023-04-27 11:45:57 -07:00
Nathan Moinvaziri
4d1b93bf05 Fixed EVP_CIPHER being leaked in mz_crypt_aes. 2023-04-27 11:45:57 -07:00
Nathan Moinvaziri
780459d80c Change to use encrypt/decrypt final functions in mz_aes. 2023-04-26 19:58:41 -07:00
Nathan Moinvaziri
c958ac8f7c Add unit test for any length in AES-GCM. 2023-04-26 19:58:29 -07:00
Nathan Moinvaziri
99efb55637 Clean up and rename mz_crypt_aes interface. 2023-04-26 10:45:44 -07:00
Nathan Moinvaziri
faf14369d9 Rename crypto unit tests. 2023-04-26 09:47:27 -07:00
Nathan Moinvaziri
d7048c3768 Silence Windows XP CI instance. 2023-04-25 23:29:43 -07:00