Skip to main content

A set of django fields that internally are encrypted using the cryptography.io native python encryption library.

Project description

https://travis-ci.org/lanshark/django-encrypted-model-fields.png

About

This is a fork of https://github.com/foundertherapy/django-cryptographic-fields. It has been renamed, and updated to properly support Python3 and latest versions of Django.

django-encrypted-model-fields is set of fields that wrap standard Django fields with encryption provided by the python cryptography library. These fields are much more compatible with a 12-factor design since they take their encryption key from the settings file instead of a file on disk used by keyczar.

While keyczar is an excellent tool to use for encryption, it’s not compatible with Python 3, and it requires, for hosts like Heroku, that you either check your key file into your git repository for deployment, or implement manual post-deployment processing to write the key stored in an environment variable into a file that keyczar can read.

Getting Started

$ pip install django-encrypted-model-fields

Add “encrypted_model_fields” to your INSTALLED_APPS setting like this:

INSTALLED_APPS = (
    ...
    'encrypted_model_fields',
)

django-encrypted-model-fields expects the encryption key to be specified using FIELD_ENCRYPTION_KEY in your project’s settings.py file. For example, to load it from the local environment:

import os

FIELD_ENCRYPTION_KEY = os.environ.get(‘FIELD_ENCRYPTION_KEY’, ‘’)

To use an encrypted field in a Django model, use one of the fields from the encrypted_model_fields module:

from encrypted_model_fields.fields import EncryptedCharField

class EncryptedFieldModel(models.Model):

encrypted_char_field = EncryptedCharField(max_length=100)

For fields that require max_length to be specified, the Encrypted variants of those fields will automatically increase the size of the database field to hold the encrypted form of the content. For example, a 3 character CharField will automatically specify a database field size of 100 characters when EncryptedCharField(max_length=3) is specified.

Due to the nature of the encrypted data, filtering by values contained in encrypted fields won’t work properly. Sorting is also not supported.

Generating an Encryption Key

There is a Django management command generate_encryption_key provided with the encrypted_model_fields library. Use this command to generate a new encryption key to set as settings.FIELD_ENCRYPTION_KEY.

./manage.py generate_encryption_key

Running this command will print an encryption key to the terminal, which can be configured in your environment or settings file.

Development Environment

Added Tox for testing with different versions of Django and Python. To get started:

pip install -r dev-requirements.txt

using pyenv add the requisite python interpreters:

pyenv install 3.6.5 pyenv install 3.5.5 pyenv install 2.7.15

Add the requisite versions to the local version:

pyenv local 2.7.15 3.5.5 3.6.5

Run tox

tox

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-encrypted-model-fields-0.5.8.tar.gz (8.9 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file django-encrypted-model-fields-0.5.8.tar.gz.

File metadata

  • Download URL: django-encrypted-model-fields-0.5.8.tar.gz
  • Upload date:
  • Size: 8.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.0

File hashes

Hashes for django-encrypted-model-fields-0.5.8.tar.gz
Algorithm Hash digest
SHA256 f9ce7e3e20a28b31944359e45d4e09fb9db2b040f66c80d75ecdf121b4183951
MD5 0a9413da424f35c10cf32210272bc1a8
BLAKE2b-256 4f02b82747ed3ebdbcfa0e2619982f63aa6a3e892e1a1983f029376d8e7aa1c1

See more details on using hashes here.

File details

Details for the file django_encrypted_model_fields-0.5.8-py3-none-any.whl.

File metadata

  • Download URL: django_encrypted_model_fields-0.5.8-py3-none-any.whl
  • Upload date:
  • Size: 10.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.0

File hashes

Hashes for django_encrypted_model_fields-0.5.8-py3-none-any.whl
Algorithm Hash digest
SHA256 4426b48c6a1da949a3d2c58d1f368cb69185790ce0c60c6f8364310b857616e0
MD5 430a08f2a6fdefff048fe889c61ec07c
BLAKE2b-256 9ab21fb6123b86fc0143c9e37a3aff1399abfc5ca07275f521bc10d48687cbd6

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