IdentityCredential.StoreStaticAuthenticationData Method

Definition

Overloads

StoreStaticAuthenticationData(X509Certificate, Byte[])

Store authentication data associated with a dynamic authentication key.

StoreStaticAuthenticationData(X509Certificate, Instant, Byte[])

Store authentication data associated with a dynamic authentication key.

StoreStaticAuthenticationData(X509Certificate, Byte[])

Store authentication data associated with a dynamic authentication key.

[Android.Runtime.Register("storeStaticAuthenticationData", "(Ljava/security/cert/X509Certificate;[B)V", "GetStoreStaticAuthenticationData_Ljava_security_cert_X509Certificate_arrayBHandler", ApiSince=30)]
public abstract void StoreStaticAuthenticationData (Java.Security.Cert.X509Certificate authenticationKey, byte[] staticAuthData);
[<Android.Runtime.Register("storeStaticAuthenticationData", "(Ljava/security/cert/X509Certificate;[B)V", "GetStoreStaticAuthenticationData_Ljava_security_cert_X509Certificate_arrayBHandler", ApiSince=30)>]
abstract member StoreStaticAuthenticationData : Java.Security.Cert.X509Certificate * byte[] -> unit

Parameters

authenticationKey
X509Certificate

The dynamic authentication key for which certification and associated static authentication data is being provided.

staticAuthData
Byte[]

Static authentication data provided by the issuer that validates the authenticity and integrity of the credential data fields.

Attributes

Remarks

Store authentication data associated with a dynamic authentication key.

This should only be called for an authenticated key returned by #getAuthKeysNeedingCertification().

This member is deprecated. Use #storeStaticAuthenticationData(X509Certificate, Instant, byte[]) instead.

Java documentation for android.security.identity.IdentityCredential.storeStaticAuthenticationData(java.security.cert.X509Certificate, byte[]).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

StoreStaticAuthenticationData(X509Certificate, Instant, Byte[])

Store authentication data associated with a dynamic authentication key.

[Android.Runtime.Register("storeStaticAuthenticationData", "(Ljava/security/cert/X509Certificate;Ljava/time/Instant;[B)V", "GetStoreStaticAuthenticationData_Ljava_security_cert_X509Certificate_Ljava_time_Instant_arrayBHandler", ApiSince=31)]
public virtual void StoreStaticAuthenticationData (Java.Security.Cert.X509Certificate authenticationKey, Java.Time.Instant expirationDate, byte[] staticAuthData);
[<Android.Runtime.Register("storeStaticAuthenticationData", "(Ljava/security/cert/X509Certificate;Ljava/time/Instant;[B)V", "GetStoreStaticAuthenticationData_Ljava_security_cert_X509Certificate_Ljava_time_Instant_arrayBHandler", ApiSince=31)>]
abstract member StoreStaticAuthenticationData : Java.Security.Cert.X509Certificate * Java.Time.Instant * byte[] -> unit
override this.StoreStaticAuthenticationData : Java.Security.Cert.X509Certificate * Java.Time.Instant * byte[] -> unit

Parameters

authenticationKey
X509Certificate

The dynamic authentication key for which certification and associated static authentication data is being provided.

expirationDate
Instant

The expiration date of the static authentication data.

staticAuthData
Byte[]

Static authentication data provided by the issuer that validates the authenticity and integrity of the credential data fields.

Attributes

Remarks

Store authentication data associated with a dynamic authentication key.

This should only be called for an authenticated key returned by #getAuthKeysNeedingCertification().

Java documentation for android.security.identity.IdentityCredential.storeStaticAuthenticationData(java.security.cert.X509Certificate, java.time.Instant, byte[]).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to