├── .gitignore ├── .travis.yml ├── AUTHORS.md ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── pgcrypto ├── __init__.py ├── fields.py ├── lookups.py ├── migrations │ ├── 0001_add_pgcrypto_extension.py │ └── __init__.py ├── mixins.py └── models.py ├── requirements.txt ├── requirements_dev.txt ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── dbrouters.py ├── default └── __init__.py ├── diff_keys ├── __init__.py └── models.py ├── factories.py ├── forms.py ├── keys ├── README.md ├── private.key ├── private_diff.key ├── public.key └── public_diff.key ├── models.py ├── run.py └── test_fields.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incuna/django-pgcrypto-fields/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incuna/django-pgcrypto-fields/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incuna/django-pgcrypto-fields/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incuna/django-pgcrypto-fields/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incuna/django-pgcrypto-fields/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incuna/django-pgcrypto-fields/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incuna/django-pgcrypto-fields/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incuna/django-pgcrypto-fields/HEAD/README.md -------------------------------------------------------------------------------- /pgcrypto/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incuna/django-pgcrypto-fields/HEAD/pgcrypto/__init__.py -------------------------------------------------------------------------------- /pgcrypto/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incuna/django-pgcrypto-fields/HEAD/pgcrypto/fields.py -------------------------------------------------------------------------------- /pgcrypto/lookups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incuna/django-pgcrypto-fields/HEAD/pgcrypto/lookups.py -------------------------------------------------------------------------------- /pgcrypto/migrations/0001_add_pgcrypto_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incuna/django-pgcrypto-fields/HEAD/pgcrypto/migrations/0001_add_pgcrypto_extension.py -------------------------------------------------------------------------------- /pgcrypto/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pgcrypto/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incuna/django-pgcrypto-fields/HEAD/pgcrypto/mixins.py -------------------------------------------------------------------------------- /pgcrypto/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -e . 2 | django>=1.11,<3.2 3 | -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incuna/django-pgcrypto-fields/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incuna/django-pgcrypto-fields/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incuna/django-pgcrypto-fields/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dbrouters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incuna/django-pgcrypto-fields/HEAD/tests/dbrouters.py -------------------------------------------------------------------------------- /tests/default/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/diff_keys/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/diff_keys/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incuna/django-pgcrypto-fields/HEAD/tests/diff_keys/models.py -------------------------------------------------------------------------------- /tests/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incuna/django-pgcrypto-fields/HEAD/tests/factories.py -------------------------------------------------------------------------------- /tests/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incuna/django-pgcrypto-fields/HEAD/tests/forms.py -------------------------------------------------------------------------------- /tests/keys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incuna/django-pgcrypto-fields/HEAD/tests/keys/README.md -------------------------------------------------------------------------------- /tests/keys/private.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incuna/django-pgcrypto-fields/HEAD/tests/keys/private.key -------------------------------------------------------------------------------- /tests/keys/private_diff.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incuna/django-pgcrypto-fields/HEAD/tests/keys/private_diff.key -------------------------------------------------------------------------------- /tests/keys/public.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incuna/django-pgcrypto-fields/HEAD/tests/keys/public.key -------------------------------------------------------------------------------- /tests/keys/public_diff.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incuna/django-pgcrypto-fields/HEAD/tests/keys/public_diff.key -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incuna/django-pgcrypto-fields/HEAD/tests/models.py -------------------------------------------------------------------------------- /tests/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incuna/django-pgcrypto-fields/HEAD/tests/run.py -------------------------------------------------------------------------------- /tests/test_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incuna/django-pgcrypto-fields/HEAD/tests/test_fields.py --------------------------------------------------------------------------------