Package com.yubico.webauthn.data
Class AuthenticatorDataFlags
- java.lang.Object
-
- com.yubico.webauthn.data.AuthenticatorDataFlags
-
public final class AuthenticatorDataFlags extends java.lang.ObjectThe flags bit field of an authenticator data structure, decoded as a high-level object.- See Also:
- Table 1
-
-
Field Summary
Fields Modifier and Type Field Description booleanATAttested credential data present.booleanBEDeprecated.EXPERIMENTAL: This feature is from a not yet mature standard; it could change as the standard matures.booleanBSDeprecated.EXPERIMENTAL: This feature is from a not yet mature standard; it could change as the standard matures.booleanEDExtension data present.booleanUPUser presentbooleanUVUser verifiedbytevalue
-
Constructor Summary
Constructors Constructor Description AuthenticatorDataFlags(byte value)Decode anAuthenticatorDataFlagsobject from a raw bit field byte.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)inthashCode()java.lang.StringtoString()
-
-
-
Field Detail
-
value
public final byte value
-
UP
public final boolean UP
User present
-
UV
public final boolean UV
User verified
-
BE
@Deprecated public final boolean BE
Deprecated.EXPERIMENTAL: This feature is from a not yet mature standard; it could change as the standard matures.Backup eligible: the credential can and is allowed to be backed up.NOTE that this is only a hint and not a guarantee, unless backed by a trusted authenticator attestation.
- See Also:
- §6.1. Authenticator Data
-
BS
@Deprecated public final boolean BS
Deprecated.EXPERIMENTAL: This feature is from a not yet mature standard; it could change as the standard matures.Backup status: the credential is currently backed up.NOTE that this is only a hint and not a guarantee, unless backed by a trusted authenticator attestation.
- See Also:
- §6.1. Authenticator Data
-
AT
public final boolean AT
Attested credential data present.Users of this library should not need to inspect this value directly.
-
ED
public final boolean ED
Extension data present.- See Also:
AuthenticatorData.getExtensions()
-
-
Constructor Detail
-
AuthenticatorDataFlags
public AuthenticatorDataFlags(byte value)
Decode anAuthenticatorDataFlagsobject from a raw bit field byte.
-
-