Herman Semenov
e6eeb4ea52
Align structures for 64-bit platforms (stream_split, mz_opt, crypt_sha, crypt_hmac)
...
- mz_stream_split 120 -> 104 bytes
- minizip_opt 32 -> 24 bytes
- mz_crypt_sha 32 -> 24 bytes
- mz_crypt_hmac 40 -> 32 bytes
2025-03-11 19:42:25 -07:00
Nathan Moinvaziri
2c51fa719e
Clang-format style changes.
2024-11-01 16:37:57 -07:00
Cœur
20c6f562d1
Implicit conversion loses integer precision: 'unsigned long' to 'int32_t'
2024-10-31 11:38:23 -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
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
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
99efb55637
Clean up and rename mz_crypt_aes interface.
2023-04-26 10:45:44 -07:00
Nathan Moinvaziri
1c24464e50
Implement verification of AES-GCM tag with OpenSSL.
2023-04-25 23:28:37 -07:00
Nathan Moinvaziri
8964058d0c
Added AES-GCM unit test and fixed BCrypt code.
2023-04-25 23:27:50 -07:00
Nathan Moinvaziri
3c5ce939b7
Fallback to SHA1 hash when SHA256 is not available on OS.
2023-04-24 19:01:08 -07:00
Nathan Moinvaziri
103a1c836d
Remove limited OS support for AES CTR mode.
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
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
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
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
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
f07faecdde
Remove all comparisons to NULL.
2023-02-19 16:04:13 -08:00
Nathan Moinvaziri
03e4d2213d
Remove copyright years.
2023-02-16 13:14:21 -08:00
Nathan Moinvaziri
848c3e3503
Removed empty lines.
2022-11-29 17:19:49 -08:00
Sergey Markelov
9896383d2f
Add SHA224, SHA384, SHA512 to crypt.
2022-01-18 10:31:11 -08:00
Nigel Tao
d42634cb73
Make mz_crypt_openssl.c work with BoringSSL
...
BoringSSL does not provide cms.h but this is an optional dependency for
minizip, conditional on defined(MZ_ZIP_SIGNING).
For the functions called by mz_crypt_init:
- The OpenSSL_add_all_algorithms function is declared in evp.h.
OpenSSL's hmac.h includes evp.h but BoringSSL's hmac.h does not.
- The ERR_* functions are declared in err.h in both.
- The ENGINE_* functions are declared in engine.h in OpenSSL but are in
crypto.h for BoringSSL.
2021-07-10 09:46:08 -07:00
Nathan Moinvaziri
db95894646
Updated name of project to minizip-ng.
2021-01-23 16:19:05 -08:00
Ørjan
af49f4652b
libressl 2.7.0 and above provides HMAC_CTX_{new,free,reset}
2020-11-25 14:35:14 -08:00
Nathan Moinvaziri
70811ac6f5
Remove version number from headers.
2020-06-19 21:21:12 -07:00
Nathan Moinvaziri
dc6962b5fa
Use same brace style as zlib.
2020-06-14 22:00:02 -07:00
Nathan Moinvaziri
2aa369c468
Version 2.9.3.
2020-05-21 07:31:09 -07:00
Nathan Moinvaziri
b39f7a0e89
Version 2.9.2.
2020-02-12 08:38:09 -08:00
Nathan Moinvaziri
370ab036f3
Version 2.9.1.
2019-11-15 13:24:17 -08:00
Nathan Moinvaziri
3d736ceff4
Fixed formatting.
2019-10-19 17:39:02 -07:00
Nathan Moinvaziri
10ac291d91
Version 2.9.0.
2019-09-18 16:55:43 -07:00
Nathan Moinvaziri
e33afe4012
Fixed segfault when copying hmac. #376 , #409
2019-08-15 18:16:48 -07:00
Nathan Moinvaziri
e9c8709b3f
Added shim functions for HMAC_CTX not available on openSSL < 1.1
2019-08-15 17:15:43 -07:00
Nathan Moinvaziri
88cb25164c
Updated HMAC code for OpenSSL 1.1.0. #409
2019-08-15 16:48:09 -07:00
Nathan Moinvaziri
84a398027d
Added option to enable signing which is by default turned on. But now at least people don't have to define MZ_ZIP_NO_SIGNING in most projects I see. Signing support now requires MZ_ZIP_SIGNING to be defined.
2019-08-14 20:31:04 -07:00
Nathan Moinvaziri
32fd805440
Version 2.8.9.
2019-07-04 10:32:02 -07:00
Nathan Moinvaziri
fbfd4e82f7
Version 2.8.8.
2019-05-22 17:50:39 -07:00
Nathan Moinvaziri
46ac718c70
Added comment about AES_ecb wrt OpenSSL.
2019-05-21 13:18:21 -07:00
Nathan Moinvaziri
64c4c7f868
Version 2.8.7.
2019-05-09 18:46:18 -07:00
Nathan Moinvaziri
58daeb9497
Don't compile signing functions if MZ_ZIP_NO_SIGNING is defined. #391
2019-05-02 06:55:38 -07:00