We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using ZipArchive based on minizip 2.8.7 with AppleCrypto, I made this AES password protected file (password is "got"): v2.zip
But it can't be unzip by popular tools like:
The text was updated successfully, but these errors were encountered:
Here is a pure minizip scenario:
$ cmake . -DMZ_BUILD_TEST=ON -DMZ_BZIP2=OFF -DMZ_LZMA=OFF -DMZ_BRG=OFF $ cmake --build . $ ./minizip -p pwd zip_apple.zip README.md $ rm README.md $ cmake . -DMZ_BUILD_TEST=ON -DMZ_BZIP2=OFF -DMZ_LZMA=OFF -DMZ_BRG=ON $ cmake --build . $ ./minizip -x -p pwd zip_apple.zip Minizip 2.8.7 - https://github.com/nmoinvaz/minizip --------------------------------------------------- -x -p *** zip_apple.zip Archive zip_apple.zip Extracting README.md Error -3 saving entries to disk zip_apple.zip Error -105 closing archive for reading
Sorry, something went wrong.
Fixed AES not working in correct mode when using CommonCrypto. #397, #…
641b0bc
…398
That should fix it. Let me know if you have problems.
No branches or pull requests
Using ZipArchive based on minizip 2.8.7 with AppleCrypto, I made this AES password protected file (password is "got"):
v2.zip
But it can't be unzip by popular tools like:
The text was updated successfully, but these errors were encountered: