How to unzip a password protected file in Android

I want to unzip a password protected file. I know how to unzip files for regular mail files that are not password protected. There are applications like Winzip that do the same.

Can you guys point me to some kind of tutorial or something that I can use to implement it?

+4
source share
1 answer

If you want to implement this feature in one of your applications, you can use Zip4j -Library, which supports AES 128/256 encryption and Standard zip code encryption. The usage method is very similar to the standard zip libraries in java.

+8
source

Source: https://habr.com/ru/post/887627/


All Articles