├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── client └── java │ ├── com │ └── luojilab │ │ └── rock │ │ └── Crypto.java │ └── readme.md ├── mirage ├── __init__.py ├── crypto.py ├── exceptions.py ├── fields.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── mirage.py └── tools.py ├── requirements.txt ├── setup.py └── tests ├── __init__.py ├── apps ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_testmodel_textraw.py │ ├── 0003_testmodel_url.py │ ├── 0004_testmodel_json.py │ └── __init__.py ├── models.py ├── tests.py └── views.py ├── manage.py ├── mirage ├── settings ├── base.py ├── mysql.py └── pg.py ├── test_crypto.py ├── test_field.py └── urls.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojilab/django-mirage-field/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojilab/django-mirage-field/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojilab/django-mirage-field/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojilab/django-mirage-field/HEAD/README.md -------------------------------------------------------------------------------- /client/java/com/luojilab/rock/Crypto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojilab/django-mirage-field/HEAD/client/java/com/luojilab/rock/Crypto.java -------------------------------------------------------------------------------- /client/java/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojilab/django-mirage-field/HEAD/client/java/readme.md -------------------------------------------------------------------------------- /mirage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mirage/crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojilab/django-mirage-field/HEAD/mirage/crypto.py -------------------------------------------------------------------------------- /mirage/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojilab/django-mirage-field/HEAD/mirage/exceptions.py -------------------------------------------------------------------------------- /mirage/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojilab/django-mirage-field/HEAD/mirage/fields.py -------------------------------------------------------------------------------- /mirage/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mirage/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mirage/management/commands/mirage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojilab/django-mirage-field/HEAD/mirage/management/commands/mirage.py -------------------------------------------------------------------------------- /mirage/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojilab/django-mirage-field/HEAD/mirage/tools.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | psycopg2 2 | pymysql 3 | cryptography 4 | tqdm 5 | django 6 | twine -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojilab/django-mirage-field/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojilab/django-mirage-field/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/apps/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojilab/django-mirage-field/HEAD/tests/apps/admin.py -------------------------------------------------------------------------------- /tests/apps/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojilab/django-mirage-field/HEAD/tests/apps/apps.py -------------------------------------------------------------------------------- /tests/apps/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojilab/django-mirage-field/HEAD/tests/apps/migrations/0001_initial.py -------------------------------------------------------------------------------- /tests/apps/migrations/0002_testmodel_textraw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojilab/django-mirage-field/HEAD/tests/apps/migrations/0002_testmodel_textraw.py -------------------------------------------------------------------------------- /tests/apps/migrations/0003_testmodel_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojilab/django-mirage-field/HEAD/tests/apps/migrations/0003_testmodel_url.py -------------------------------------------------------------------------------- /tests/apps/migrations/0004_testmodel_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojilab/django-mirage-field/HEAD/tests/apps/migrations/0004_testmodel_json.py -------------------------------------------------------------------------------- /tests/apps/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/apps/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojilab/django-mirage-field/HEAD/tests/apps/models.py -------------------------------------------------------------------------------- /tests/apps/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojilab/django-mirage-field/HEAD/tests/apps/tests.py -------------------------------------------------------------------------------- /tests/apps/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /tests/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojilab/django-mirage-field/HEAD/tests/manage.py -------------------------------------------------------------------------------- /tests/mirage: -------------------------------------------------------------------------------- 1 | ../mirage -------------------------------------------------------------------------------- /tests/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojilab/django-mirage-field/HEAD/tests/settings/base.py -------------------------------------------------------------------------------- /tests/settings/mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojilab/django-mirage-field/HEAD/tests/settings/mysql.py -------------------------------------------------------------------------------- /tests/settings/pg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojilab/django-mirage-field/HEAD/tests/settings/pg.py -------------------------------------------------------------------------------- /tests/test_crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojilab/django-mirage-field/HEAD/tests/test_crypto.py -------------------------------------------------------------------------------- /tests/test_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojilab/django-mirage-field/HEAD/tests/test_field.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojilab/django-mirage-field/HEAD/tests/urls.py --------------------------------------------------------------------------------