CryptoObject
class CryptoObject
kotlin.Any | |
↳ | android.hardware.fingerprint.FingerprintManager.CryptoObject |
A wrapper class for the crypto objects supported by FingerprintManager. Currently the framework supports Signature
, Cipher
and Mac
objects.
Requires API level 23 (Android 6.0, Marshmallow)
Summary
Public constructors | |
---|---|
Public methods | |
---|---|
Cipher! |
This class was deprecated in API level 21. |
Mac! |
getMac()
This class was deprecated in API level 21. |
Signature! |
This class was deprecated in API level 21. |
Public constructors
<init>
CryptoObject(signature: Signature)
Parameters | |
---|---|
signature |
Signature: This value must never be null . |
Public methods
getCipher
fungetCipher(): Cipher!
Deprecated:
This class was deprecated in API level 21.
Get Cipher
object.
Requires API level 23 (Android 6.0, Marshmallow)
Return | |
---|---|
Cipher!: Cipher object or null if this doesn't contain one. |
getMac
fungetMac(): Mac!
Deprecated:
This class was deprecated in API level 21.
Get Mac
object.
Requires API level 23 (Android 6.0, Marshmallow)
Return | |
---|---|
Mac!: Mac object or null if this doesn't contain one. |
getSignature
fungetSignature(): Signature!
Deprecated:
This class was deprecated in API level 21.
Get Signature
object.
Requires API level 23 (Android 6.0, Marshmallow)
Return | |
---|---|
Signature!: Signature object or null if this doesn't contain one. |