├── .gitignore ├── .travis.yml ├── LICENCE.txt ├── README.md ├── encrypted_fields ├── __init__.py ├── fields.py ├── models.py └── tests.py ├── manage.py ├── requirements.txt ├── setup.py ├── testkey ├── 1 └── meta └── testsettings.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | MANIFEST 3 | dist/ 4 | build/ 5 | *.egg-info/ 6 | *~ 7 | .venv 8 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defrex/django-encrypted-fields/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defrex/django-encrypted-fields/HEAD/LICENCE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defrex/django-encrypted-fields/HEAD/README.md -------------------------------------------------------------------------------- /encrypted_fields/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.1.2' 2 | 3 | from .fields import * 4 | -------------------------------------------------------------------------------- /encrypted_fields/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defrex/django-encrypted-fields/HEAD/encrypted_fields/fields.py -------------------------------------------------------------------------------- /encrypted_fields/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /encrypted_fields/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defrex/django-encrypted-fields/HEAD/encrypted_fields/tests.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defrex/django-encrypted-fields/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Django>=1.4 2 | python-keyczar==0.715 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defrex/django-encrypted-fields/HEAD/setup.py -------------------------------------------------------------------------------- /testkey/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defrex/django-encrypted-fields/HEAD/testkey/1 -------------------------------------------------------------------------------- /testkey/meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defrex/django-encrypted-fields/HEAD/testkey/meta -------------------------------------------------------------------------------- /testsettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defrex/django-encrypted-fields/HEAD/testsettings.py --------------------------------------------------------------------------------