DJANGO OUTBOX ENCRYPTION
Project description
DJANGO OUTBOX ENCRYPTION
Sometimes, when you ready to publish your project to server.
There is a slight change between the application settings on the local and the server. Such as database name, password, etc. The second thing, is you need to encrypt information like password or other. The last one, you need to automatically select setting local when you work on local computer, and auto select server when application running on server.
You are on the right path...
Install package to your environment
> pip install outbox-encryption
How to use
Encrypt to environment
This code for create ".env.client" or ".env.server" file
> python manage.py shell
> from encryption import OutboxEncryption
> lib = OutboxEncryption()
> mplaint_text = {
'DB_PASSWORD': '',
'SECRET_KEY': 'xxg_7me8rl2m#a_h2oresgt2#ni=3_4*!ai*=rtsq)yi!g7_5-51xx'
}
> lib.encrypt_environ('.env.local', mplaint_text)
# file .env.local is created (maybe file is hidden, CTRL+H to show it)
# Open file .env.local
You have to write other setting that no encrypt apply, such as:
DEBUG=True
UNDER_CONSTRUCTION=False
DB_ENGINE=django.db.backends.mysql
DB_NAME=db_name
DB_USER=root
DB_HOST=127.0.0.1
DB_PORT=3306
Note:
File .env.local must be :
.env.local or
.env.server (nothing else)
Decrypt from environment
Run inside settings.py (django project settings)
> from encryption import OutboxEncryption
> lib = OutboxEncryption()
Setting unique variable that only exists in local environment, and not exist in server
We choose env_outbox_encrypt
> lib.set_keyword_local('env_outbox_encrypt')
List of key variable that must be encrypt or decrypt before set or get data
> mplaint_key = ['DB_PASSWORD', 'SECRET_KEY']
Variable that must be cast as list from environmnet to settings.py
> mplaint_list = ['ALLOWED_HOSTS']
Variable that must be cast as tuple from environment to settings.py
> mplaint_tuple = ['SECURE_PROXY_SSL_HEADER']
Get encryption data
> dict1 = lib.decrypt_environ(mplaint_key, mplaint_list, mplaint_tuple)
Setting variable :
> DEBUG = dict1['DEBUG']
> UNDER_CONSTRUCTION = dict1['UNDER_CONSTRUCTION']
> DEBUG = dict1['DEBUG']
> SECRET_KEY = dict1['SECRET_KEY']
> ALLOWED_HOSTS = dict1['ALLOWED_HOSTS']
> DATABASES = {
'default': {
'ENGINE' : dict1['DB_ENGINE'],
'NAME' : dict1['DB_NAME'],
'USER' : dict1['DB_USER'],
'PASSWORD' : dict1['DB_PASSWORD'],
'HOST' : dict1['DB_HOST'],
'PORT' : dict1['DB_PORT'],
}
> SECURE_PROXY_SSL_HEADER = dict1['SECURE_PROXY_SSL_HEADER']
Project details
Release history Release notifications | RSS feed
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 outbox-encryption-1.0.11.tar.gz
.
File metadata
- Download URL: outbox-encryption-1.0.11.tar.gz
- Upload date:
- Size: 8.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d7873f3876fb6df65363898232fdc3bffe8120330dc03c9a6ed9b52fa7828f49 |
|
MD5 | 31c8f078e12a6b91f20f85d63b04eb34 |
|
BLAKE2b-256 | d65a88e8b331dc5341a7d54921410ffad21f4e3ead9c62f71d2ec15dddab623c |
Provenance
File details
Details for the file outbox_encryption-1.0.11-py3-none-any.whl
.
File metadata
- Download URL: outbox_encryption-1.0.11-py3-none-any.whl
- Upload date:
- Size: 8.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ab0527a7e09872f481cb4c8f471845ce82ce6fcefcbb1e69c738435bfb226acf |
|
MD5 | 05860af5d2062e11e2664b5d75313afc |
|
BLAKE2b-256 | cdc08fcbaf54374d312d008cec2830eb1e2145693f4b44a184f100fed671f743 |