GithubHelp home page GithubHelp logo

haasr / django3-encrypted-model-fields Goto Github PK

View Code? Open in Web Editor NEW
0.0 1.0 0.0 13 KB

A set of fields that wrap standard Django fields with encryption provided by the python cryptography library.

License: MIT License

Python 100.00%

django3-encrypted-model-fields's Introduction

Django Encrypted Model Fields

image

Forked from https://gitlab.com/lansharkconsulting/django/django-encrypted-model-fields

About

This is a fork of https://gitlab.com/lansharkconsulting/django/django-encrypted-model-fields. I simply replaced import statements using django.utils.six with six since Django 3.0+ does not use these Python 3/2 compatibility libraries.

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

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.