Skip to main content

Storage backend for Django that encrypts/compresses with PZip.

Project description

django-pzip-storage

A FileSystemStorage subclass for Django that encrypts/compresses with PZip.

Installation

pip install django-pzip-storage

Usage

The simplest way to use PZipStorage is by setting your DEFAULT_FILE_STORAGE to pzip_storage.PZipStorage. By default, PZipStorage will use your SECRET_KEY setting as the encryption key.

IMPORTANT: Encrypting with SECRET_KEY means you must keep SECRET_KEY a secret, and if you lose or reset it without first rotating the keys of all stored files, they will be lost forever.

PZipStorage may be used with existing unencrypted files, as a drop-in replacement for FileSystemStorage. If it determines the requested file is not a PZip file, it will delegate to FileSystemStorage after emitting a needs_encryption signal (see below).

You may also use PZipStorage as a custom storage backend anywhere Django allows it; see Managing Files in the Django documentation for more information.

Settings

  • PZIP_STORAGE_EXTENSION - the extension to append to any file saved with PZipStorage. Defaults to .pz.
  • PZIP_STORAGE_NOCOMPRESS - a set of file extensions (with leading period) which should not be compressed when saving. Defaults to: [".z", ".gz", ".zip", ".tgz", ".jpg", ".jpeg", ".png", ".gif", ".sit", ".sitx", ".7z", ".pz", ".bz2", ".xz"]
  • PZIP_STORAGE_KEYS - an iterable (or callable returning an iterable) of keys to use. The first key on the list will be used for encrypting files. Defaults to PZipStorage.default_keys, which yields SECRET_KEY.

These settings may be overridden on a per-storage basis by instantiating PZipStorage manually with extension or nocompress keyword arguments.

Signals

PZipStorage emits a number of signals when opening files in various circumstances:

  • pzip_storage.needs_rotation - sent when a file was decrypted using an old key, i.e. not the first key in the provided list.
  • pzip_storage.needs_encryption - sent when an unencrypted file was opened.
  • pzip_storage.bad_keys - sent when an encrypted file was opened, but no keys in the list could decrypt it.

You may listen for these signals to do things like gradual encryption, key rotation, or logging.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-pzip-storage-1.0.1.tar.gz (4.6 kB view details)

Uploaded Source

Built Distribution

django_pzip_storage-1.0.1-py3-none-any.whl (4.9 kB view details)

Uploaded Python 3

File details

Details for the file django-pzip-storage-1.0.1.tar.gz.

File metadata

  • Download URL: django-pzip-storage-1.0.1.tar.gz
  • Upload date:
  • Size: 4.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.13

File hashes

Hashes for django-pzip-storage-1.0.1.tar.gz
Algorithm Hash digest
SHA256 d9a85cd620ebb54d40e1bf7f6a35d68f7881acfcc63615dc997206cb72b09e5c
MD5 8e0da52a519cf200b4e0acead57cf2c0
BLAKE2b-256 938395fe5f25f114b7873eb2634c794dd901d6c55544236b4135da6deac7c5c4

See more details on using hashes here.

File details

Details for the file django_pzip_storage-1.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for django_pzip_storage-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 3e29b1d444e40e904c9d3c0b6ab3e99c1e5eca198d1be9e40f24aeff99503fe4
MD5 fab04be9b30172edc413478317273ee8
BLAKE2b-256 c5398d91f85fc5f5d79340c0c48662b8769a3df14e6d08f1b32d39139bce4761

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page