我正在使用React Native构建一个应用程序,该应用程序需要存储访问令牌。我找到的解决方案是将访问令牌存储在AsyncStorage中,但问题是存储在AsyncStorage中的值没有加密。如果存储值未加密,会有哪些安全风险?例如,如果设备被盗并且磁盘未加密,则有人可以访问文件系统并读取存储区中的值。
isr3a4wc1#
异步存储is not accessible from other apps。您最好只加密数据:https://medium.com/dev-genius/security-in-react-native-applications-asyncstorage-4a619d923638
1条答案
按热度按时间isr3a4wc1#
异步存储is not accessible from other apps。
您最好只加密数据:https://medium.com/dev-genius/security-in-react-native-applications-asyncstorage-4a619d923638