Skip to main content

Django Model Field that supports AES encryption in MySQL

Project description

Provides an AES field for Django that works with MySQL to do the AES encryption and decryption in the database.

See: https://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html#function_aes-decrypt

Credit:

  • Kumar McMillan did a lot of this work.

Usage

Like any other field:

from aesfield.field import AESField

class SomeModel(...):
    key = AESField()

Configuration

AESField takes the following parameters beyond a normal CharField:

  • aes_prefix: the prefix to use on fields, defaults to aes:

  • aes_key: the key to use in the lookup method to find a suitable key for this field, defaults to default

Settings:

  • AES_METHOD: the module to look in for a key lookup method, if you want something different from the default, aesfield.default

  • AES_KEYS: used by the aesfield.default method. It’s a dictionary of keys to filenames. Those files must be able to be read by the Django process. It must have a default key, unless you specify a specifc one in aes_key

Commands

If you add aesfield to INSTALLED_APPS you’ll get one more command, generate_aes_keys. This will generate a new file for each file mentioned in the AES_KEYS dictionary. But only if that file does not already exist.

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-mysql-aesfield-0.2.1.tar.gz (4.1 kB view details)

Uploaded Source

File details

Details for the file django-mysql-aesfield-0.2.1.tar.gz.

File metadata

File hashes

Hashes for django-mysql-aesfield-0.2.1.tar.gz
Algorithm Hash digest
SHA256 4e95adf68806a1f625d215ebd9efa6a82288c3c3a16b89110a79a23c3092f511
MD5 222b5aae496d347ccb2375359f1ad237
BLAKE2b-256 33cc0f36407fbf71f038cb0b9f9753e265e84788cfcf7b5465d63ef4b44dcf72

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