Home > Mobile >  Flutter secred storage
Flutter secred storage

Time:03-21

what is difference between this two storage option?

https://pub.dev/packages/flutter_secure_storage

https://pub.dev/packages/get_storage

This two libraries based on the same or different implementation? If I have root on smartphone I can read data from application files saved using this storage? Which library is better/more safe?

CodePudding user response:

First is encrypted, second is not.

So first is more secured

  • Related