Android 中的私钥存储
我必须将我的应用程序的私钥存储在 Android 设备中的安全位置,我读到了有关 certStore 的信息,但它不允许在其中存储文件。 是否有任何位置可以安全地存储它,并且在重新安装应用程序时不会被删除。
I have to store the private key of my app in a secure location in the android device, i read about certStore, but it doesnt allow to store a file in it.
Is there any location where I can store it securely and doesn't get deleted if app re-installs.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
但这并不能保护密钥不被用户本身读取。
如果您想在删除应用程序并再次安装到设备后使用此共享首选项,请尝试使用 Android 备份管理器。
我认为它可以帮助您重新安装活动数据。
谢谢。
But this won't protect the key from being read by the user itself.
and if you want to use this shared preference after your application removed and again installed in device then try for Android Backup Manager.
I think its help you in re-installation of your activity's data.
Thanks.