如何在Android中使用KeyGenerator为FingerPrint API生成密钥

如何在Android中使用KeyGenerator为FingerPrint API生成密钥,第1张

概述我正在尝试为我的应用程序实现FingerPrint API.为此,我正在关注Google的 Fingerprint Dialog sample. 如果compileSdkVersion = 23和minSdkVersion = 23,它的工作正常,但我的应用程序的compileSdkVersion是21,minSdkVersion是14.为此,我使用FingerprintManagerCompat 我正在尝试为我的应用程序实现FingerPrint API.为此,我正在关注Google的 Fingerprint Dialog sample.

如果compileSdkVersion = 23和minSdkVersion = 23,它的工作正常,但我的应用程序的compileSdkVersion是21,minSdkVersion是14.为此,我使用FingerprintManagerCompat而不是FingerprintManager,它工作正常,但问题在于密钥生成.

androID.security.keystore.KeyGenParameterSpec;androID.security.keystore.KeyPermanentlyInvalIDatedException;androID.security.keystore.KeyPropertIEs;

密钥库包及其类不可用于生成密钥,18个API版本中提供密钥生成的所有支持算法,任何人都可以指导我如何生成密钥以支持更低版本,请?

解决方法 看看FingerprintManagerCompat javadoc:

A class that coordinates access to the fingerprint harDWare.

On platforms before M,this class behaves as there would be no
fingerprint harDWare available.

看一下源代码:

final int version = Build.VERSION.SDK_INT;if (version >= 23) {   // a working implementation   IMPL = new API23FingerprintManagerCompatImpl();} else {   // an empty stub   IMPL = new LegacyFingerprintManagerCompatImpl();}

如果您的设备低于API VERSION 23,则使用LegacyFingerprintManagerCompatImpl,这只是一个STUB.例如:

@OverrIDepublic boolean hasEnrolledFingerprints(Context context) {   return false;}@OverrIDepublic boolean isHarDWareDetected(Context context) {   return false;}

您不能在旧设备中使用此功能.那些API(一些来自androID.security.keystore)仅在AndroID M上可用

总结

以上是内存溢出为你收集整理的如何在Android中使用KeyGenerator为FingerPrint API生成密钥全部内容,希望文章能够帮你解决如何在Android中使用KeyGenerator为FingerPrint API生成密钥所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1135191.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存