Most visited

Recently visited

FingerprintManagerCompat.CryptoObject

public static class FingerprintManagerCompat.CryptoObject
extends Object

java.lang.Object
    android.support.v4.hardware.fingerprint.FingerprintManagerCompat.CryptoObject


FingerprintManager支持的加密对象的包装类。 目前该框架支持SignatureCipher对象。

摘要(Summary)

Public constructors

FingerprintManagerCompat.CryptoObject(Signature signature)
FingerprintManagerCompat.CryptoObject(Cipher cipher)
FingerprintManagerCompat.CryptoObject(Mac mac)

公共方法(Public methods)

Cipher getCipher()

获取 Cipher对象。

Mac getMac()

获取 Mac对象。

Signature getSignature()

获取 Signature对象。

继承方法(Inherited methods)

From class java.lang.Object

Public constructors

FingerprintManagerCompat.CryptoObject

FingerprintManagerCompat.CryptoObject (Signature signature)

参数(Parameters)
signature Signature

FingerprintManagerCompat.CryptoObject

FingerprintManagerCompat.CryptoObject (Cipher cipher)

参数(Parameters)
cipher Cipher

FingerprintManagerCompat.CryptoObject

FingerprintManagerCompat.CryptoObject (Mac mac)

参数(Parameters)
mac Mac

公共方法(Public methods)

getCipher

Cipher getCipher ()

获取 Cipher对象。

返回(Returns)
Cipher Cipher object or null if this doesn't contain one.

getMac

Mac getMac ()

获取 Mac对象。

返回(Returns)
Mac Mac object or null if this doesn't contain one.

getSignature

Signature getSignature ()

获取 Signature对象。

返回(Returns)
Signature Signature object or null if this doesn't contain one.

Hooray!