fancycode / pylzma

Python bindings for the LZMA library

Home Page:http://www.joachim-bauch.de/projects/pylzma/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Unpacking AES-256 encrypted zip files in memory using pylzma

rkatriel-mdsol opened this issue · comments

Hi,

I am using the ZipFile module from the Python zipfile package to read in and unpack zip archives into memory:

import zipfile
zfile = zipfile.ZipFile(filehandle, 'r', compression=zipfile.ZIP_LZMA)
zfile.setpassword(password)

However, this does not work with AES-256 encryption (a known issue). Is it possible to achieve this using pylzma?

Thanks,
Ron

pylzma supports AES-256 encryption for .7z files, but not for .zip files.