Symmetrically encrypted serializers for Kombu
Project description
This library registers a set of Kombu serializers which take those built into Kombu and symmetrically encrypts them using Fernet.
The encryption key is accessed via the KOMBU_FERNET_KEY environment variable. To set the encryption key:
import os from cryptography.fernet import Fernet key = Fernet.generate_key() os.environ['KOMBU_FERNET_KEY'] = key
To try it out, start a redis server and from the example directory, run:
pip install celery redis celery -A tasks worker
Then from another shell:
python -c "from tasks import add; add.delay(1, 2)"
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
Close
Hashes for kombu-fernet-serializers-0.0.2.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 33c731b5175eece659ec213cbca02f204e4d323843d9a6806f4560404e0e10ea |
|
MD5 | c452919c16918b0af174454bf76a41e2 |
|
BLAKE2b-256 | 394a168f7ff312aa609939138767cfebb936e5919e0c0b7f41b99ee47def5479 |