MurphyAdam / encrypted-json-field

Encrypted JSON Field for Django
https://pypi.org/project/encrypted-json-field/
3 stars 0 forks source link

Support other encrypted fields #3

Open abashmak opened 2 months ago

abashmak commented 2 months ago

Is there any plan to add support for other fields such as EncryptedCharField and EncryptedTextField similar to: https://github.com/morlandi/django-encrypted-json-fields? I would like to use your library because it supports AES-256, whereas the other one uses Fernet which only supports AES-128.

MurphyAdam commented 2 months ago

Hi, Initial plan was to only provide functionality for the JSON field, but I think it should be possible to support other fields. I will try to add them soon as I have cleared some free time.

Let me know if you still planning on using this/already using this package please.

abashmak commented 2 months ago

Thanks for responding. I ended up cloning django-encrypted-json-fields locally and overriding the Fernet implementation with AES256 one. So there's no current need for this feature from me. But perhaps it would be useful for others.