-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
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
Add support for AES compression #110
Comments
If |
I'm still curious to see what is in the https://github.com/abbeycode/UnzipKit/blob/master/Tests/PasswordProtectionTests.m |
I am getting following error Error Domain=UZKErrorDomain Code=-103 "Bad zip file" UserInfo={NSLocalizedFailureReason=Bad zip file, NSLocalizedRecoverySuggestion=Error opening archive (-103), NSURL=file:///Users/sravanpeddi/Library/Developer/CoreSimulator/Devices/B8E1609D-21D9-4C9A-8FF7-01AE9FB49AC6/data/Containers/Bundle/Application/06C48480-CFBB-4E43-BB9A-B721313B384D/SampleUnZip.app/complete_49445_ak_pc_6922.zip, NSLocalizedDescription=Bad zip file} :: i am able to extract zip folder with given password in mac. |
You're able to extract it using Archive Utility? Are you able to send me the file and password privately, so I can take a look? You can DM me on Twitter: @bbeyCode. |
SampleUnZip.zip |
I was able to reproduce with the archive you included in your project, successfully unarchiving with other apps, and seeing the error you did with UnzipKit. I'm not yet sure what's going on, but will take a look. |
…ing AES encryption, and updated it to use a new error code reporting what went wrong (Issue #110)
…ing AES encryption, and updated it to use a new error code reporting what went wrong (Issue #110)
What's causing your issue is that the archive you sent is using the AES compression method, which isn't supported yet. I've updated your issue to turn it into a feature request for supporting this compression method. In the meantime, I'm adding to the v2.0 branch a new error code (UZKErrorCodeAES) for this case, so at least it's not mysterious (once my PR passes validation). |
… 13) (#113) * Added new error code (`UZKErrorCodeAES`) to report when an archive is AES-encrypted, since that compression method is not supported at this time (and otherwise the error doesn't help you arrive at that conclusion), as described in Issue #110 * Upgraded project to Xcode 13-compatibility
Hi Team,
I want to read one file from zip(which has password) folder without unzip/exract it. I am using following snippet.
I have a file in zip folder named "complete_49445_ak_pc_6922/49445.json"
here i extracted data is coming as null.
i would like to read one file content based on that file content i would like to extract files.
How can we do that ?
i am able to get contents if zip is not having password. But I am facing issue if zip is having password only, though i have provided password for archive object.
Thanks,
Sravan
The text was updated successfully, but these errors were encountered: