Hi all! I'm starting a Tauri project and I want to save information into a file with an extension associated with my app. At first, I though about using sqlite to save and retrieve the data but this file will contain sensitive information and therefore I'd like to encrypt the data of the file. While I could define every field as a blob and do the encryption/description myself, I'd like to know existing alternatives to achieve this. Could anyone point me to something I can investigate? I want to be able to save and retrieve data into a file while encrypting the file itself.
#Save and retrieve data onto a file while encrypting the file itself.
6 messages · Page 1 of 1 (latest)
Is this sensitive information that you don't want the end-user to know?
You can use the Stronghold plugin if you don't mind the user knowing the information.
Otherwise you'll have to set up a remote server that users can communicate with but it should never send them the sensitive information.
Ideally, when the user stars the app with a given file it will be promoted for a password that will be used as key for description and so only if the end user knows this password will the data be available to them
Definitely sounds like Stronghold.