作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 api token 在 flutter 中构建一个应用程序,我想知道 SharedPrefences 和 flutter_secure_storage 包是否做同样的事情或者它们是否不同。
最佳答案
flutter_secure_storage包使用带 MODE_PRIVATE 的 SharedPreferences,如您所见 here :
preferences = context.getSharedPreferences(SHARED_PREFERENCES_NAME, Context.MODE_PRIVATE);
它还通过 AES 使用额外的加密。来自
readme :
AES encryption is used for Android. AES secret key is encrypted with RSA and RSA key is stored in KeyStore
.您可以在
source code 中找到详细信息.
flutter_secure_storage
会更安全。而不是具有私有(private)模式的原始 SharedPreferences。
关于android - 在 Flutter 中构建应用时,SharedPrefernces 和 Flutter_secure_storage 包有什么区别?还是他们做同样的事情?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65679231/
我正在尝试创建一个计算时间的应用程序。我的情况:我有一个包含很多元素的 RecyclerView,每个元素都有不同的 time 属性。 现在,当单击一个元素时,然后单击另一个元素,我希望对所有这些属性
我正在尝试使用 api token 在 flutter 中构建一个应用程序,我想知道 SharedPrefences 和 flutter_secure_storage 包是否做同样的事情或者它们是否不
我是一名优秀的程序员,十分优秀!