Nathan Moinvaziri
c74bb95701
Skip unsupported SHA hash algorithms in unit tests.
2023-04-24 10:28:54 -07:00
Nathan Moinvaziri
ee19400cf6
Change third-party directory to third_party.
2023-04-24 10:28:54 -07:00
Nathan Moinvaziri
a0b138e06c
Change CMake to do BCrypt detection.
2023-04-19 10:45:38 -07:00
Nathan Moinvaziri
65219949ff
Fixed missing defines on older versions of Windows after bcrypt change.
2023-04-19 09:15:06 -07:00
Nathan Moinvaziri
e0d267e5f0
Fixed using IV in mz_crypt_aes on Windows.
2023-04-18 17:32:08 -07:00
Nathan Moinvaziri
11d932c7c6
Fixed callback casting warning on Windows.
2023-04-18 17:32:08 -07:00
Nathan Moinvaziri
103a1c836d
Remove limited OS support for AES CTR mode.
2023-04-18 17:32:08 -07:00
Nathan Moinvaziri
357d458875
Fixed compilation errors and warnings in mz_crypt_aes on macOS.
2023-04-18 17:32:08 -07:00
Nathan Moinvaziri
8eed140133
Remove MZ_BCRYPT option from CMake.
2023-04-18 17:32:08 -07:00
Nathan Moinvaziri
23fac55eda
Added initial support for other AES modes.
2023-04-18 17:15:48 -07:00
Nathan Moinvaziri
82f1cfb1e2
Remove more signing code.
2023-04-18 13:55:16 -07:00
Nathan Moinvaziri
ce42d1e81c
Added support for OpenSSL version 3.
2023-04-18 13:49:06 -07:00
Nathan Moinvaziri
f46a912b8f
Fixed more unused warnings on Ubuntu.
2023-04-18 13:08:25 -07:00
Nathan Moinvaziri
d7001c0156
Remove unused aes->provider with OpenSSL aes class.
2023-04-18 11:32:15 -07:00
Nathan Moinvaziri
521eeae6a9
Fixed unused variable warnings on Ubuntu.
2023-04-18 11:31:41 -07:00
Nathan Moinvaziri
76ed7768d5
Allow AES encrypt/decrypt size to be greater than block size.
2023-04-17 14:41:02 -07:00
Nathan Moinvaziri
fcde5c5ba7
Added optional support for AES CBC mode to mz_crypt_aes.
2023-04-17 14:32:06 -07:00
Nathan Moinvaziri
30dbab74d9
Upgrade CodeQL workflow to v2 due to GitHub deprecation.
2023-04-17 14:31:26 -07:00
Nathan Moinvaziri
1b6ef9f25d
Use ECB mode by default for BCrypt for WinZIP AES.
2023-04-17 11:31:48 -07:00
Nathan Moinvaziri
0028c875af
Upgrade Ubuntu 18 CI runs to 20 after GitHub stopped supporting 18.
2023-04-16 20:51:54 -07:00
Nathan Moinvaziri
be23e857ed
Fix ALIAS target name to be consistent with imported target.
...
Co-authored-by: SpaceIm <SpaceIm@users.noreply.github.com>
2023-04-15 23:12:19 -07:00
Nathan Moinvaziri
e15e1462f2
Proper use of GNUInstallDirs cmake module.
...
Co-authored-by: Tomasz Kłoczko <kloczek@users.noreply.github.com>
2023-04-15 23:05:15 -07:00
Nathan Moinvaziri
85a4ee2864
Added description and homepage url to CMake.
2023-04-15 23:03:31 -07:00
Nathan Moinvaziri
10d06fa43c
Modify CMake to call project() early as possible.
...
Co-authored-by: SpaceIm <SpaceIm@users.noreply.github.com>
2023-04-15 22:55:07 -07:00
Nathan Moinvaziri
3e872a5016
Fixed undefined BCRYPT_RNG_ALG_HANDLE when compiling against older WinRT
2023-04-12 16:13:52 -07:00
Nathan Moinvaziri
3b0461e229
Added _CRT_NONSTDC_NO_DEPRECATE for MSVC compilation with strdup.
2023-04-12 13:58:39 -07:00
Nathan Moinvaziri
3394c29b52
Fixed wrong usage of create function for sha224 test.
2023-04-09 11:14:26 -07:00
Nathan Moinvaziri
f9203e7a55
Remove SHA224 support for Windows.
2023-04-09 11:14:26 -07:00
Nathan Moinvaziri
217adc9363
Remove first param from create functions.
...
Better handle low memory situations.
2023-04-09 11:14:26 -07:00
Nathan Moinvaziri
3da04514cd
Remove signing feature.
...
Too much work to maintain and rarely used. Continue to use v3 for that feature.
2023-04-09 11:14:26 -07:00
Nathan Moinvaziri
8d2488c481
Version 3.0.10.
3.0.10
2023-04-09 11:13:13 -07:00
Nathan Moinvaziri
5f5d899164
Added PBKDF2 test vectors.
2023-04-07 18:22:07 -07:00
Nathan Moinvaziri
a3ed70ade8
Added WinZip AES attack paper to docs.
2023-04-06 16:34:05 -07:00
Nathan Moinvaziri
16cbb2a9d7
Added clarifying comments to WinZip AES code.
2023-04-06 16:30:49 -07:00
Nathan Moinvaziri
3c0995b85d
Use calloc in hmac creation for WinRT.
2023-03-31 18:22:01 -07:00
Nathan Moinvaziri
5dd5fe0906
Add missing string.h include for strdup.
2023-03-31 18:21:47 -07:00
lawadr
94e474a03d
Add test for CLOCK_MONOTONIC support
...
Instead of always using CLOCK_MONOTONIC, use POSIX feature testing to
determine support at compile-time, or if necessary at run-time using
sysconf. If not supported, falls back to CLOCK_REALTIME.
2023-03-30 11:42:16 -07:00
lawadr
b3a7caee9a
Fix MZ_FETCH_LIBS option for non-WIN32 systems
...
Using `cmake_dependent_option` overrides a previously set directory
scope MZ_FETCH_LIBS variable. This means if a project sets MZ_FETCH_LIBS
before adding minizip-ng as a subdirectory in order to force it to fetch
zlib, it will set the variable to OFF, only use `find_library` and never
fetch zlib on non-WIN32 systems. This is a regression from previous
behaviour.
Instead, revert back to using `option` as this obeys a directory scope
MZ_FETCH_LIBS variable set by a parent directory, allowing said parent
directory to control zlib version.
2023-03-29 17:34:35 -07:00
lawadr
944b6aa523
Use POSIX implementation if platform is not Windows
...
Non-UNIX platforms may support POSIX, partly or fully, through a
compatibility layer of some kind. If a non-Windows platform does not
have the UNIX CMake variable set, take the POSIX path through the CMake
anyway.
2023-03-29 17:34:00 -07:00
Sam James
36f6d729be
CMake: set newer POSIX_C_SOURCE
...
Enable POSIX 2008 as it's needed for strdup(), otherwise we get:
```
/var/tmp/portage/sys-libs/minizip-ng-3.0.9/work/minizip-ng-3.0.9/mz_os.c: In function ‘mz_dir_make’:
/var/tmp/portage/sys-libs/minizip-ng-3.0.9/work/minizip-ng-3.0.9/mz_os.c:286:19: error: implicit declaration of function ‘strdup’ [-Werror=implicit-function-declaration]
286 | current_dir = strdup(path);
| ^~~~~~
```
The man page for strdup says:
```
strdup():
_XOPEN_SOURCE >= 500
|| /* Since glibc 2.12: */ _POSIX_C_SOURCE >= 200809L
|| /* glibc <= 2.19: */ _BSD_SOURCE || _SVID_SOURCE
```
2023-03-16 16:40:21 -07:00
Nathan Moinvaziri
db9df99b91
Version 3.0.9.
3.0.9
2023-03-16 09:37:00 -07:00
Mircea Baja
2eb6305346
Fixed incorrect handling of long odd length passwords
2023-03-14 09:40:49 -07:00
Jonathan Conder
46673f5333
Create parent directory before extracting symlink
...
At least when using Info-ZIP 3.0, symlinks to both files and directories
lack a trailing slash, so the second mz_path_remove_filename is
unnecessary (and could break things if the parent directory doesn't
precede the symlink in the file). If other implementations do add a
trailing slash, the if statement should handle that.
2023-03-12 18:40:13 -07:00
Jonathan Conder
b3bda77040
Add NUL terminator to linkname
2023-03-12 18:38:37 -07:00
Nathan Moinvaziri
c9fc27ccee
Use calloc instead of malloc + memset and use strdup where possible.
2023-02-24 14:35:31 -08:00
Nathan Moinvaziri
261041dabc
Remove useless MZ_CUSTOM_ALLOC and MZ_CUSTOM_FREE.
...
It would have required an include to make it useful.
2023-02-24 14:23:04 -08:00
Nathan Moinvaziri
ffe32766e0
Fixed formatting in fuzzers.
2023-02-19 16:04:32 -08:00
Nathan Moinvaziri
f07faecdde
Remove all comparisons to NULL.
2023-02-19 16:04:13 -08:00
Nathan Moinvaziri
1e4cc21871
Fixed minor formatting whitespace changes.
2023-02-19 10:41:34 -08:00
Nathan Moinvaziri
9829913018
Remove MZ_WINRT_API, use newer API if targeting newer version of Windows
2023-02-17 09:47:02 -08:00