我正在使用AndroidKeystore
作为当前项目中的提供程序来安全地存储私钥。
现在我想让我的应用程序可用于较低版本的Android 4.1(API版本16)。
因此,我需要找到AndroidKeystore
的替代方案,但很难找到任何可用的解决方案。
是否有任何建议如何在这些旧版本上实现/模拟/替换AndroidKeystore
功能?
此外,KeyPairGeneratorSpec
自v18起可用。什么是旧版本的正确替代品?
答案 0 :(得分:6)
我终于找到了一个有效的解决方案。 对于Android 4.x,Credential Storage服务可以保存各种机密信息。 到目前为止我找到的最好的描述是
http://nelenkov.blogspot.de/2012/05/storing-application-secrets-in-androids.html