-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Encryption of User data #18
Comments
Is this issue still unresolved? |
@TaraStefanyi Yes, it is still unresolved. How do you plan to resolve it? |
I was thinking about generating and storing a secret key safely on user's device (maybe shared preferences or a single file in app's folder). Then we would use this key to encrypt/decrypt the data. |
@TaraStefanyi Sure, go ahead give it a try and if possible try it in the MVVM branch |
@sakshampruthi I just wanted to ask what data should be encrypted... |
Hi @TaraStefanyi Sorry for the late reply |
what if user uninstall's the app and install's the app again ? would he be able to retrieve his data again ? i don't think so. |
Hello, is this issue still open? Instead of using local storage (since the files will be deleted after the app uninstall) I would use Password-Based Key Derivation Function (PBKDF).
No key storage on device: The encryption key is derived dynamically from the user's password each time it's needed. If you like this approach, please let me know and assign the issue to me. |
Encrypt profile details that are uploaded or stored on firebase so that only user can access these details
The text was updated successfully, but these errors were encountered: