A Django app for cryptography in Django Models.
Project description
Django-CryptographicFields
A Django app for using cryptography in Django Models. It support bi-directional cryptography.
Check out the documentation :- Django-CryptographicFields
Requirements
- Python (3.6+)
- Pycryptodome (3.9+)
- Django (3.0+)
- Timestring (1.6.0+) Mandatory if python < 3.7
Quick start
1.Install Django-CryptographicFields
Install Django CryptographicFields using PIP:-
pip install Django-CryptographicFields
2. Add "CryptographicFields" to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [
...
'CryptographicFields',
]
3.Custom Encryption Key
Set custom Encryption Key in settings.py Make sure that key length is greater than or equal to 50 otherwise it will raise an error
CRYPTOGRAPHIC_KEY="your_key"
Creating Models using CryptographicFields
Cryptography by example
from CryptographicFields import fields
from django.db import models
class CryptogaphicModel(models.Model):
name=fields.CharField(max_length=120)
The data will now be automatically encrypted when saved to the database.& decrypted when data is retrieved.
Advantages over other projects:-
- Supports data retrival
- Supports custom query
- Supports Q() queries
- Supports Ordering data through python functions
- Supports Sorting data through python functions
- Supports 'startswith' lookups for all String Based Fields
- Supports 'date' lookup for Date,DateTime Fields
- Supports 'time' lookup for TimeField
For More Information check out the documentation :- Django-CryptographicFields
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
Built Distribution
File details
Details for the file Django-CryptographicFields-2.1.0.tar.gz
.
File metadata
- Download URL: Django-CryptographicFields-2.1.0.tar.gz
- Upload date:
- Size: 7.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 88c9de133dcb0dfb5f4ba95c48bdb691e89c1461905e444dde25827bf3637ee6 |
|
MD5 | 76bcfec40d8484a8f0d19e835bfbe9ee |
|
BLAKE2b-256 | f951163422c906a415dc105379e967927bff132775f631e73faa2e890fac0cd1 |
File details
Details for the file Django_CryptographicFields-2.1.0-py3-none-any.whl
.
File metadata
- Download URL: Django_CryptographicFields-2.1.0-py3-none-any.whl
- Upload date:
- Size: 9.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6f3b65f640839e95cbb90ebc5ae88237853289697cc7e4ba79b535c13b3ad661 |
|
MD5 | 41238ec6f8c6a7080b488e44cf749f27 |
|
BLAKE2b-256 | b737802679adbeb65565f13ca4b0c6b95c68c7ca229a14cf38e47d7cafd333d4 |