If I use zip.compress with the password option, my zip file is compressed, but I’m not able to uncompress it with an external (un)compression program.
I’m using zip.compress to compress the log files from my users.
local zipOptions = {
zipFile = “log.zip”,
zipBaseDir = system.DocumentsDirectory,
srcBaseDir = system.DocumentsDirectory,
srcFiles = { “log.txt” },
listener = zipListener,
password = “dramegbaklengs”,
}
zip.compress( zipOptions )
When I try to unzip this file I get a message that it’s encrypted, but if I write the password I get a message that the password is wrong. If tried many different passwords of different complexity.
The external zipper program that I use is Bandizip6.24 as well as directly on Windows 10.
Is this encryption only meant to work internally with zip.compress/uncompress, or is something wrong?