You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Our use_user_data hook stores user data as unencrypted binary. If the user wants to encrypt certain key/values, this needs to be done manually which is highly inconvenient.
Current Situation
Our
use_user_data
hook stores user data as unencrypted binary. If the user wants to encrypt certain key/values, this needs to be done manually which is highly inconvenient.Proposed Actions
Add built-in encryption support to this hook. This design will be inspired by
django-searchable-encrypted-fields
.Based on that library, here's a few specifics about the implementation:
settings.py:REACTPY_USER_DATA_ENCRYPTION_KEYS: list
encrypted = models.BooleanField(default=False)
toUserDataModel
andComponentSession
manage.py reactpy_upgrade_data_encryption
management command.manage.py check --deploy
that warns if encryption is not enabled.The text was updated successfully, but these errors were encountered: