Sergey Markelov
682dfd23e3
Implemented mz_crypt_sign for UWP
2023-02-16 11:27:07 -08:00
Sergey Markelov
63f927345b
Encryption support on UWP
2023-02-16 11:27:07 -08:00
Sergey
c6c4f2cb2b
Fix odd length key buffer overrun in mz_crypt_hmac_init()
2023-02-14 12:21:28 -08:00
Nathan Moinvaziri
cf04dd5a7e
Check for RNG on Ubuntu also when using WinZIP AES encryption only.
2023-02-13 18:34:06 -08:00
Nathan Moinvaziri
ca23563431
Use older version of macOS to install test cert without user interaction
2023-02-13 17:58:44 -08:00
Nathan Moinvaziri
fab36c60db
Only install test certificate is MZ_SIGNING=ON.
2023-02-13 17:56:58 -08:00
Sergey Markelov
de9e622832
Test case for crypt random number generator
2023-02-13 17:32:25 -08:00
Sergey Markelov
d87de80493
Fix passed AES crypt test if native encrypt/decrypt functions fail
2023-02-13 17:32:25 -08:00
Sergey
dd6f10fe8c
Remove unused computed_hash buffer in AES crypt test
2023-02-13 17:32:25 -08:00
Nathan Moinvaziri
1ede6f9b5e
Fixed compare of narrow type with wide type in loop in mz_crypt_pbkdf2.
2023-02-12 16:03:25 -08:00
Nathan Moinvaziri
23f66e974d
Fixed split disk archives being created with 0 bytes. #669
...
After the first disk, disks would be created with zero size. This would happen
when using MZ_ZIP_FLAG_DATA_DESCRIPTOR or MZ_ZIP_FLAG_MASK_LOCAL_INFO, because
we were changing the disk properly when going to update local file info headers.
2023-02-12 15:57:34 -08:00
lemtys
804e057b73
Fix typo in mz_zip_rw docs.
2023-02-12 15:57:34 -08:00
Nathan Moinvaziri
04ffa8efd7
Move info on minizip streams to docs.
2023-02-12 15:21:14 -08:00
Marek Rusinowski
41c93fb2d5
Fix private linking of LibLZMA
...
The current `liblzma` makes linke look for `libliblzma` as the `lib` prefix is added automatically. This is breaking static linking of library when using pkg-config for resolving dependencies.
2023-01-15 10:48:27 -08:00
Nathan Moinvaziri
94a9733eab
Added code coverage yaml configuration.
2023-01-15 10:43:41 -08:00
Nathan Moinvaziri
6f2e6bd74b
Prevent hang on macOS when trying to install test certificate.
2023-01-15 10:43:29 -08:00
Nathan Moinvaziri
c93a6b3d1c
Use gcovr 5.0 for generating coverage reports.
2022-12-31 12:04:05 -08:00
Nathan Moinvaziri
8ebdf3b7cb
Cleanup cmake generate command in GHA build workflow.
2022-12-31 12:03:52 -08:00
Nathan Moinvaziri
bde7737043
Upgrade from clang-11 to clang-14.
2022-12-31 11:30:11 -08:00
Nathan Moinvaziri
029e724e76
Fixed VS_STARTUP_PROJECT cmake setting.
2022-12-31 11:22:22 -08:00
Nathan Moinvaziri
cee6d8cbd4
Version 3.0.8.
3.0.8
2022-12-31 11:09:18 -08:00
Nathan Moinvaziri
05971e04e2
Added gitignore file.
2022-12-31 11:09:18 -08:00
Nathan Moinvaziri
a02cdbaa8e
Remove version number from readme.
2022-12-31 11:05:41 -08:00
Nathan Moinvaziri
86c7f99271
Upgrade codecov action to v3 to remove GHA warnings.
2022-12-30 15:47:45 -08:00
Nathan Moinvaziri
0a5c15988f
Upgrade to LLVM-11 for Ubuntu 22.
2022-12-30 15:43:56 -08:00
Nicolas Benes
0273af4bde
Rewrite test certificates using more modern algorithms
...
The test.p12 file use the RC2-CBC and 3DES-CBC algorithms, which
are quite dated and require the `-legacy` option in openssl to read
them.
```console
$ openssl pkcs12 -in test.p12 -info -noout -legacy -passin pass:test
MAC: sha1, Iteration 1
MAC length: 20, salt length: 8
PKCS7 Encrypted data: pbeWithSHA1And40BitRC2-CBC, Iteration 2048
Certificate bag
PKCS7 Data
Shrouded Keybag: pbeWithSHA1And3-KeyTripleDES-CBC, Iteration 2048
```
Rewrite the test.p12 file with a current openssl (via p12 -> pem -> p12
conversion) to use more modern algorithms which do not require legacy
mode. Rewrite test.pem with a new export of test.p12.
```console
$ openssl pkcs12 -in test.p12 -info -noout -passin pass:test
MAC: sha256, Iteration 2048
MAC length: 32, salt length: 8
PKCS7 Encrypted data: PBES2, PBKDF2, AES-256-CBC, Iteration 2048, PRF hmacWithSHA256
Certificate bag
PKCS7 Data
Shrouded Keybag: PBES2, PBKDF2, AES-256-CBC, Iteration 2048, PRF hmacWithSHA256
```
2022-12-30 13:05:20 -08:00
Nathan Moinvaziri
a5f12aed00
Fixed casting warning by removing buffer limit which is already checked.
2022-11-30 12:28:55 -08:00
Nathan Moinvaziri
3bce6eea20
Added check to ensure symbolic link is less than 64kb. #620
2022-11-30 11:00:46 -08:00
Nathan Moinvaziri
848c3e3503
Removed empty lines.
2022-11-29 17:19:49 -08:00
Nathan Moinvaziri
6efe5c0fe6
Fixed CI badge icon on readme.
2022-11-29 16:51:26 -08:00
Nathan Moinvaziri
c3bcf483ee
Clean up CMake arguments.
2022-11-29 16:51:26 -08:00
Nathan Moinvaziri
bb82bb5b9f
Allow CMake to handle optimization flags.
2022-11-29 16:51:25 -08:00
Nathan Moinvaziri
60649ada97
Disable MZ_SIGNING due to extra test requirements.
...
MZ_SIGNING no longer on by default due to extra test requirements of having
to have a certificate installed as root to validate signing.
2022-11-29 16:51:25 -08:00
Nathan Moinvaziri
4d13283bad
Check to ensure GTest alias doesn't exist in parent project.
2022-11-29 16:51:25 -08:00
Nathan Moinvaziri
5354bc842c
Added missing include for FSCTL_GET_REPARSE_POINT on Windows. #656
2022-11-29 16:51:25 -08:00
Nathan Moinvaziri
a4b0c789f9
Fixed symbolic links don't extract on macOS. #620
2022-11-29 16:51:20 -08:00
SpaceIm
4c44bd1e66
cmake: inject libdir of lzma
2022-11-29 16:02:05 -08:00
Nathan Moinvaziri
2a2375e443
Fixed shell used on Windows when generating coverage reports.
2022-11-29 16:02:05 -08:00
Nathan Moinvaziri
8246df4ce1
Fixed missing build steps on Windows for GCC.
2022-11-29 16:02:05 -08:00
Nathan Moinvaziri
d7a10bb868
Silence warning about not being able to find GTest.
2022-11-29 16:02:05 -08:00
Sam James
be23c8d3b7
Search system for GTest before downloading. #654
...
Distributions often do builds with no network access available
for both security reasons and also to ensure reproducibility.
This change tells CMake to query the system for a copy of gtest,
but if it's not available, it'll fall back to downloading via
FetchContent.
2022-11-29 16:02:05 -08:00
Nathan Moinvaziri
d2d8a1a0db
Fixed CODECOV_TOKEN not existing in gcov step.
2022-11-29 16:01:53 -08:00
Nathan Moinvaziri
b877ac4fed
Use newer versions of GitHub actions.
2022-11-19 11:51:26 -08:00
Nathan Moinvaziri
cf344cf9a9
Upgrade to using codecov GitHub action.
2022-11-19 11:51:26 -08:00
Markus Alind
ff817303af
Compat: Check that the whole entry has been read before checking CRC checksum.
2022-11-01 16:38:15 -07:00
Markus Alind
6caefea90b
Compat: Close any open entry in unzOpenCurrentFile3 like zlib mini-zip.
2022-11-01 16:38:15 -07:00
Nathan Moinvaziri
76c41af936
Updated codecov.io badge on readme.
2022-10-15 16:19:20 -07:00
Nathan Moinvaziri
13bf319cf5
Remove codacy badge from readme.
2022-10-15 16:19:08 -07:00
Nathan Moinvaziri
2414288862
Version 3.0.7.
3.0.7
2022-10-15 15:55:45 -07:00
Nathan Moinvaziri
9333ea834e
Don't use pthreads on Windows for Google framework.
2022-10-15 15:55:40 -07:00