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
Could it be possible to provide a way for saving data more securely, with encryption?
I'm thinking about EncryptedSharedPreferences for the Android, if I'm correct Keychain should work on Apple targets and it's already covered somewhat, and I'm not sure about js targets.
@russhwolf What do you think? I could chip in with some initial research and development
The text was updated successfully, but these errors were encountered:
Yeah, for Android you can use EncryptedSharedPreferences already without needing any explicit library support here because it implements SharedPreferences. Eventually I think there will be something similar for DataStore as well, but it's not clear what that will look like yet.
For iOS (or other Apple platforms) there's KeychainSettings, which hasn't been very battle-tested yet but it should work (and I'd love to hear whether or not it meets your security needs).
For JS there's nothing currently, so I'd definitely welcome contributions there. Same for other platforms.
Could it be possible to provide a way for saving data more securely, with encryption?
I'm thinking about EncryptedSharedPreferences for the Android, if I'm correct
Keychain
should work on Apple targets and it's already covered somewhat, and I'm not sure aboutjs
targets.@russhwolf What do you think? I could chip in with some initial research and development
The text was updated successfully, but these errors were encountered: