Represents a newly-created scoped credential, aka the response from a registration request.
Inherited Constant Summary
Public Method Summary
static AuthenticatorAttestationResponse |
deserializeFromBytes(byte[] serializedBytes)
De-serializes the
AuthenticatorAttestationResponse from bytes, reversing
serializeToBytes() .
|
boolean | |
byte[] | |
byte[] | |
byte[] | |
int |
hashCode()
|
byte[] |
serializeToBytes()
Serializes the
AuthenticatorAttestationResponse to bytes.
|
void |
writeToParcel(Parcel dest, int
flags)
|
Inherited Method Summary
Public Methods
public static AuthenticatorAttestationResponse deserializeFromBytes (byte[] serializedBytes)
De-serializes the
AuthenticatorAttestationResponse
from bytes, reversing
serializeToBytes()
. See go/gmscore-perf/reflectedparcelable for why we can't
rely on Parcelable
behaviour.
Returns
- The deserialized
AuthenticatorAttestationResponse
.
public boolean equals (Object obj)
public byte[] getAttestationObject ()
public byte[] getClientDataJSON ()
public byte[] getKeyHandle ()
public int hashCode ()
public byte[] serializeToBytes ()
Serializes the
AuthenticatorAttestationResponse
to bytes. Use
deserializeFromBytes(byte[])
to deserialize. See
go/gmscore-perf/reflectedparcelable for why we can't rely on Parcelable
behaviour.
Returns
- the serialized byte array.