# Print output for @column tags ?>
public
static
final
class
FingerprintManager.CryptoObject
extends Object
| java.lang.Object | |
| ↳ | android.hardware.fingerprint.FingerprintManager.CryptoObject |
This class is deprecated.
See BiometricPrompt.CryptoObject
A wrapper class for the crypto objects supported by FingerprintManager. Currently the
framework supports Signature, Cipher and Mac objects.
Public constructors | |
|---|---|
CryptoObject(Signature signature)
|
|
CryptoObject(Cipher cipher)
|
|
CryptoObject(Mac mac)
|
|
Public methods | |
|---|---|
Cipher
|
getCipher()
Get |
Mac
|
getMac()
Get |
Signature
|
getSignature()
Get |
Inherited methods | |
|---|---|
public CryptoObject (Signature signature)
| Parameters | |
|---|---|
signature |
Signature: This value cannot be null. |
public CryptoObject (Cipher cipher)
| Parameters | |
|---|---|
cipher |
Cipher: This value cannot be null. |
public Cipher getCipher ()
Get Cipher object.
| Returns | |
|---|---|
Cipher |
Cipher object or null if this doesn't contain one. |