gpt4 book ai didi

android - 在 Flutter 中构建应用时,SharedPrefernces 和 Flutter_secure_storage 包有什么区别?还是他们做同样的事情?

转载 作者:行者123 更新时间:2023-12-03 21:44:06 32 4
gpt4 key购买 nike

我正在尝试使用 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 中找到详细信息.
至于安全 token 和其他敏感数据,使用 flutter_secure_storage 会更安全。而不是具有私有(private)模式的原始 SharedPreferences。

关于android - 在 Flutter 中构建应用时,SharedPrefernces 和 Flutter_secure_storage 包有什么区别?还是他们做同样的事情?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65679231/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com