Android APIs
public static class

FingerprintManagerCompat.CryptoObject

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

Class Overview

A wrapper class for the crypto objects supported by FingerprintManager. Currently the framework supports Signature and Cipher objects.

Summary

Public Constructors
FingerprintManagerCompat.CryptoObject(Signature signature)
FingerprintManagerCompat.CryptoObject(Cipher cipher)
FingerprintManagerCompat.CryptoObject(Mac mac)
Public Methods
Cipher getCipher()
Get Cipher object.
Mac getMac()
Get Mac object.
Signature getSignature()
Get Signature object.
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public FingerprintManagerCompat.CryptoObject (Signature signature)

public FingerprintManagerCompat.CryptoObject (Cipher cipher)

public FingerprintManagerCompat.CryptoObject (Mac mac)

Public Methods

public Cipher getCipher ()

Get Cipher object.

Returns
  • Cipher object or null if this doesn't contain one.

public Mac getMac ()

Get Mac object.

Returns
  • Mac object or null if this doesn't contain one.

public Signature getSignature ()

Get Signature object.

Returns
  • Signature object or null if this doesn't contain one.