Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to unzip a password protected file in Android

Tags:

android

unzip

I want to unzip a file which is password protected.. I know how to unzip for normal zip files which are not password protected. There are some apps like Winzip which does the same thing.

Can you guys point me towards some tutorial or something which i can use to implement this?

like image 602
mudit Avatar asked Feb 21 '13 08:02

mudit


1 Answers

If you want to implement this function into one of your Apps you can use Zip4j-Library which supports AES 128/256 Encryption and Standard Zip Encryption. The way how to use it, is very similar to standard zip libraries in java.

like image 91
Thommy Avatar answered Sep 22 '22 17:09

Thommy