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
Currently, the application allows users to export their habits in a simple JSON format, which can also be imported back into the application. However, this approach does not provide any security for the exported data.
Proposed Changes
Encryption on Export:
When exporting habits, prompt the user to enter a key for encryption.
Encrypt the JSON data using the provided key before saving it to a file.
Decryption on Import:
When importing habits, prompt the user to enter the key used for encryption.
Decrypt the file using the provided key before importing the data into the application.
The text was updated successfully, but these errors were encountered:
Description
Currently, the application allows users to export their habits in a simple JSON format, which can also be imported back into the application. However, this approach does not provide any security for the exported data.
Proposed Changes
Encryption on Export:
Decryption on Import:
The text was updated successfully, but these errors were encountered: