CryptoObject

open class CryptoObject(source)

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

Constructors

Link copied to clipboard
constructor(@NonNull signature: @NonNull Signature)
constructor(@NonNull cipher: @NonNull Cipher)
constructor(@NonNull mac: @NonNull Mac)

Functions

Link copied to clipboard
@Nullable
open fun getCipher(): @Nullable Cipher
Get Cipher object.
Link copied to clipboard
@Nullable
open fun getMac(): @Nullable Mac
Get Mac object.
Link copied to clipboard
@Nullable
open fun getSignature(): @Nullable Signature
Get Signature object.