Package com.yubico.webauthn.data
Class AttestedCredentialData
- java.lang.Object
- 
- com.yubico.webauthn.data.AttestedCredentialData
 
- 
 public final class AttestedCredentialData extends java.lang.ObjectAttested credential data is a variable-length byte array added to the authenticator data when generating an attestation object for a given credential. This class provides access to the three data segments of that byte array.- See Also:
- 6.4.1. Attested Credential Data
 
- 
- 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)@NonNull ByteArraygetAaguid()The AAGUID of the authenticator.@NonNull ByteArraygetCredentialId()The credential ID of the attested credential.@NonNull ByteArraygetCredentialPublicKey()The credential public key encoded in COSE_Key format, as defined in Section 7 of RFC 8152.inthashCode()com.yubico.webauthn.data.AttestedCredentialData.AttestedCredentialDataBuildertoBuilder()java.lang.StringtoString()
 
- 
- 
- 
Method Detail- 
toBuilderpublic com.yubico.webauthn.data.AttestedCredentialData.AttestedCredentialDataBuilder toBuilder() 
 - 
getAaguid@NonNull public @NonNull ByteArray getAaguid() The AAGUID of the authenticator.
 - 
getCredentialId@NonNull public @NonNull ByteArray getCredentialId() The credential ID of the attested credential.
 - 
getCredentialPublicKey@NonNull public @NonNull ByteArray getCredentialPublicKey() The credential public key encoded in COSE_Key format, as defined in Section 7 of RFC 8152.
 - 
equalspublic boolean equals(java.lang.Object o) - Overrides:
- equalsin class- java.lang.Object
 
 - 
hashCodepublic int hashCode() - Overrides:
- hashCodein class- java.lang.Object
 
 - 
toStringpublic java.lang.String toString() - Overrides:
- toStringin class- java.lang.Object
 
 
- 
 
-