Rui Barradas wrote:
Hello Yasmin,
The implementation of Ciphered Local Storage Plugin is quite simple.
You just need to add a dependency to all elements of the plugin in a module of your application. After that, your application automatically will start to use a newly created database which replicates the structure of your previous local database but which is now ciphered (you can check this information in the details of the plugin).
Just to clarify, you don't need to implement anything or change anything in your logic. You just need to add the dependency for the plugin.
Once the dependency is placed in your application, you just need to make this change effective (as you should do for any other plugin):
- Publish your code and rebuild your app;
- Uninstall the previous version and install the new version.
Let me know if you have any further questions.
Kind regards,
Rui Barradas
Hi Rui,
I have added the dependency of ciphered local storage plugin in application module.
I have also checked on test browser whether data is encrypted or not by doing inspect from source (sqllite sequence local DB). it's showing some encrypted keys. but actual local data is looking same as it is. so I assumed that it's encrypted.
but if i want to check local data which is now encrypted key and want to check for decrypted. then how i will check in local data is deciphered or not.
Thanks,
Yasmin