2235 Commits

Author SHA1 Message Date
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
Nathan Moinvaziri
7fb7b06dec Set _WIN32_WINNT for CXX flags for Windows XP. 2023-04-25 23:29:01 -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
b366e5cc6f Improve hmac unit test with multiple calls to update. 2023-04-25 18:17:40 -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
0abac89d7d Added min OS info to readme. 2023-04-24 19:01:08 -07:00
Nathan Moinvaziri
75508d7f92 Check for existence of BCrypt symbols before using BCrypt API. 2023-04-24 10:33:39 -07:00
Nathan Moinvaziri
d160785a36 Fixed bugs with setting IV in BCrypt with AES. 2023-04-24 10:28:54 -07:00
Nathan Moinvaziri
a4c6fd3100 Improved check for zlib's example and example64 project. 2023-04-24 10:28:54 -07:00
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