AES encryption for zipfile.
Project description
A replacement for Python’s zipfile that can read and write AES encrypted zip files. Forked from Python 3.7’s zipfile module, it features the same zipfile API from that time (most notably, lacking support for pathlib-compatible wrappers that were introduced in Python 3.8).
Installation
pip install pyzipper
Usage
import pyzipper
secret_password = b'lost art of keeping a secret'
with pyzipper.AESZipFile('new_test.zip',
'w',
compression=pyzipper.ZIP_LZMA,
encryption=pyzipper.WZ_AES) as zf:
zf.setpassword(secret_password)
zf.writestr('test.txt', "What ever you do, don't tell anyone!")
with pyzipper.AESZipFile('new_test.zip') as zf:
zf.setpassword(secret_password)
my_secrets = zf.read('test.txt')
CRC32 Values
From pyzipper v0.4.0 onwards, no CRC32 values are included in the file headers by default. Prior to v0.4.0 (2026-05-13), a bug resulted in CRC32 values erroneously being included for small files (<20 uncompressed bytes).
From the WZ AES FAQ about CRC values:
Within the Zip format, the primary use of the CRC value is to detect accidental corruption of data that has been stored in the Zip file. With files encrypted according to the Zip 2.0 encryption specification, it also functions to some extent as a method of detecting deliberate attempts to modify the encrypted data, but not one that can be considered cryptographically strong. The CRC is not needed for these purposes with the WinZip AES encryption specification, where the HMAC-SHA1-based authentication code instead serves these roles.
The CRC has a drawback in that for very small files, such as files with four or fewer bytes, the CRC can be used, independent of the encryption algorithm, to determine the unencrypted contents of the file. And, in general, it is preferable to store as little information as possible about the encrypted file in the unencrypted Zip headers.
The CRC does serve one purpose that the authentication code does not. The CRC is computed based on the original uncompressed, unencrypted contents of the file, and it is checked after the file has been decrypted and decompressed. In contrast, the authentication code used with WinZip AES encryption is computed after compression/encryption and it is checked before decryption/decompression. In the very rare event of a hardware or software error that corrupts data during compression and encryption, or during decryption and decompression, the CRC will catch the error, but the authentication code will not.
You can conditionally enable the inclusion of the CRC32 values for files with at least min_bytes_to_include_crc uncompressed bytes using the following code:
with pyzipper.AESZipFile(
'new_test.zip',
'w',
compression=pyzipper.ZIP_LZMA,
) as zf:
zf.setencryption(
pyzipper.WZ_AES,
conditionally_include_crc=True,
min_bytes_to_include_crc=<minimum uncompressed bytes to include crc>,
)
...
The lowest number of bytes min_bytes_to_include_crc may be set to is 20, as in WZ AES FAQ.
AES Strength
The strength of the AES encryption can be configure to be 128, 192 or 256 bits. By default it is 256 bits. Use the setencryption() method to specify the encryption kwargs:
import pyzipper
secret_password = b'lost art of keeping a secret'
with pyzipper.AESZipFile('new_test.zip',
'w',
compression=pyzipper.ZIP_LZMA) as zf:
zf.setpassword(secret_password)
zf.setencryption(pyzipper.WZ_AES, nbits=256)
zf.writestr('test.txt', "What ever you do, don't tell anyone!")
with pyzipper.AESZipFile('new_test.zip') as zf:
zf.setpassword(secret_password)
my_secrets = zf.read('test.txt')
Documentation
Official Python ZipFile documentation is available here: https://docs.python.org/3/library/zipfile.html
Credits
The docs skeleton was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pyzipper-0.4.0.tar.gz.
File metadata
- Download URL: pyzipper-0.4.0.tar.gz
- Upload date:
- Size: 36.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4b96afcac04c5589d5abdc6158dd362166374e3cc6810aa441e65f8a17cb9e3
|
|
| MD5 |
162c5e081255cc80627f57dea3f43555
|
|
| BLAKE2b-256 |
8b5a548039b202f85fcdfbadaddde2f4182c6dbf7730bbe005b24f903ae886ee
|
File details
Details for the file pyzipper-0.4.0-py3-none-any.whl.
File metadata
- Download URL: pyzipper-0.4.0-py3-none-any.whl
- Upload date:
- Size: 36.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aa7b8a0fe741d67aac36ead85f6e735af107b72f84e0775f2ed565fc0d3a2f02
|
|
| MD5 |
fbe6c8b04ee10d52f6ffd732ca6d3c16
|
|
| BLAKE2b-256 |
1e9adb7b20df854ea3a7f25ee9d7bc31ff3ecce085843bcf4c06bd9c1dcc34e0
|