CredentialDataRequest


public class CredentialDataRequest
extends Object

java.lang.Object
   ↳ android.security.identity.CredentialDataRequest


This class was deprecated in API level 10000.
Use java.security.KeyStore with the Android hardware-backed keystore instead.

An object representing a request for credential data.

Summary

Nested classes

class CredentialDataRequest.Builder

This class was deprecated in API level 10000. Use java.security.KeyStore with the Android hardware-backed keystore instead. 

Public methods

Map<StringCollection<String>> getDeviceSignedEntriesToRequest()

This method is deprecated. Use java.security.KeyStore with the Android hardware-backed keystore instead.

Map<StringCollection<String>> getIssuerSignedEntriesToRequest()

This method is deprecated. Use java.security.KeyStore with the Android hardware-backed keystore instead.

byte[] getReaderSignature()

This method is deprecated. Use java.security.KeyStore with the Android hardware-backed keystore instead.

byte[] getRequestMessage()

This method is deprecated. Use java.security.KeyStore with the Android hardware-backed keystore instead.

boolean isAllowUsingExhaustedKeys()

This method is deprecated. Use java.security.KeyStore with the Android hardware-backed keystore instead.

boolean isAllowUsingExpiredKeys()

This method is deprecated. Use java.security.KeyStore with the Android hardware-backed keystore instead.

boolean isIncrementUseCount()

This method is deprecated. Use java.security.KeyStore with the Android hardware-backed keystore instead.

Inherited methods

Public methods

getDeviceSignedEntriesToRequest

Added in API level 33
public Map<StringCollection<String>> getDeviceSignedEntriesToRequest ()

This method is deprecated.
Use java.security.KeyStore with the Android hardware-backed keystore instead.

Gets the device-signed entries to request.

Returns
Map<StringCollection<String>> the device-signed entries to request.
This value cannot be null.

getIssuerSignedEntriesToRequest

Added in API level 33
public Map<StringCollection<String>> getIssuerSignedEntriesToRequest ()

This method is deprecated.
Use java.security.KeyStore with the Android hardware-backed keystore instead.

Gets the issuer-signed entries to request.

Returns
Map<StringCollection<String>> the issuer-signed entries to request.
This value cannot be null.

getReaderSignature

Added in API level 33
public byte[] getReaderSignature ()

This method is deprecated.
Use java.security.KeyStore with the Android hardware-backed keystore instead.

Gets the reader signature.

This data structure is described in the documentation for the PresentationSession.getCredentialData(String,CredentialDataRequest) method.

Returns
byte[] a COSE_Sign1 structure as described above.
This value may be null.

getRequestMessage

Added in API level 33
public byte[] getRequestMessage ()

This method is deprecated.
Use java.security.KeyStore with the Android hardware-backed keystore instead.

Gets the request message CBOR.

This data structure is described in the documentation for the PresentationSession.getCredentialData(String,CredentialDataRequest) method.

Returns
byte[] the request message CBOR as described above.
This value may be null.

isAllowUsingExhaustedKeys

Added in API level 33
public boolean isAllowUsingExhaustedKeys ()

This method is deprecated.
Use java.security.KeyStore with the Android hardware-backed keystore instead.

Gets whether to allow using an authentication key which use count has been exceeded.

By default this is set to true.

Returns
boolean whether to allow using an authentication key which use count has been exceeded if no other key is available.

isAllowUsingExpiredKeys

Added in API level 33
public boolean isAllowUsingExpiredKeys ()

This method is deprecated.
Use java.security.KeyStore with the Android hardware-backed keystore instead.

Gets whether to allow using an authentication key which is expired.

By default this is set to false.

Returns
boolean whether to allow using an authentication key which is expired if no other key is available.

isIncrementUseCount

Added in API level 33
public boolean isIncrementUseCount ()

This method is deprecated.
Use java.security.KeyStore with the Android hardware-backed keystore instead.

Gets whether to increment the use-count for the authentication key used.

By default this is set to true.

Returns
boolean whether to increment the use count of the authentication key used.