Class RegistrationResult
- java.lang.Object
-
- com.yubico.webauthn.RegistrationResult
-
public final class RegistrationResult extends java.lang.ObjectThe result of a call toRelyingParty.finishRegistration(FinishRegistrationOptions).
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)@NonNull ByteArraygetAaguid()Theaaguidreported in the of the created credential.java.util.Optional<java.util.List<java.security.cert.X509Certificate>>getAttestationTrustPath()@NonNull AttestationTypegetAttestationType()The attestation type §6.4.3.java.util.Optional<AuthenticatorRegistrationExtensionOutputs>getAuthenticatorExtensionOutputs()The authenticator extension outputs, if any.java.util.Optional<ClientRegistrationExtensionOutputs>getClientExtensionOutputs()The client extension outputs, if any.@NonNull PublicKeyCredentialDescriptorgetKeyId()The credential ID and transports of the created credential.@NonNull ByteArraygetPublicKeyCose()The public key of the created credential.longgetSignatureCount()The signature count returned with the created credential.inthashCode()booleanisAttestationTrusted()trueif and only if the attestation signature was successfully linked to a trusted attestation root.java.util.Optional<java.lang.Boolean>isDiscoverable()Try to determine whether the created credential is a discoverable credential, using the output from thecredPropsextension.com.yubico.webauthn.RegistrationResult.RegistrationResultBuildertoBuilder()java.lang.StringtoString()
-
-
-
Method Detail
-
getAttestationTrustPath
public java.util.Optional<java.util.List<java.security.cert.X509Certificate>> getAttestationTrustPath()
-
getClientExtensionOutputs
public java.util.Optional<ClientRegistrationExtensionOutputs> getClientExtensionOutputs()
The client extension outputs, if any.This is present if and only if at least one extension output is present in the return value.
-
getAuthenticatorExtensionOutputs
public java.util.Optional<AuthenticatorRegistrationExtensionOutputs> getAuthenticatorExtensionOutputs()
The authenticator extension outputs, if any.This is present if and only if at least one extension output is present in the return value.
-
isDiscoverable
public java.util.Optional<java.lang.Boolean> isDiscoverable()
Try to determine whether the created credential is a discoverable credential, using the output from thecredPropsextension.- Returns:
- A present
trueif the created credential is discoverable. A presentfalseif the created credential is not discoverable. An empty value if it is not known whether the created credential is discoverable. - See Also:
- §10.4. Credential Properties Extension (credProps), "rk" output, Discoverable Credential
-
toBuilder
public com.yubico.webauthn.RegistrationResult.RegistrationResultBuilder toBuilder()
-
getKeyId
@NonNull public @NonNull PublicKeyCredentialDescriptor getKeyId()
The credential ID and transports of the created credential.
-
getAaguid
@NonNull public @NonNull ByteArray getAaguid()
Theaaguidreported in the of the created credential.This MAY be an AAGUID consisting of only zeroes.
-
isAttestationTrusted
public boolean isAttestationTrusted()
trueif and only if the attestation signature was successfully linked to a trusted attestation root.This will always be
falseunless theattestationTrustSourcesetting was configured on theRelyingPartyinstance.You can ignore this if authenticator attestation is not relevant to your application.
-
getAttestationType
@NonNull public @NonNull AttestationType getAttestationType()
The attestation type §6.4.3. Attestation Types that was used for the created credential.You can ignore this if authenticator attestation is not relevant to your application.
- See Also:
- §6.4.3. Attestation Types
-
getPublicKeyCose
@NonNull public @NonNull ByteArray getPublicKeyCose()
The public key of the created credential.This is used in
RelyingParty.finishAssertion(FinishAssertionOptions)to verify the authentication signatures.- See Also:
RegisteredCredential.getPublicKeyCose()
-
getSignatureCount
public long getSignatureCount()
The signature count returned with the created credential.This is used in
RelyingParty.finishAssertion(FinishAssertionOptions)to verify the validity of future signature counter values.- See Also:
()
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-