Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,19 @@ public enum AttachmentHint {
* href="https://fidoalliance.org/specs/common-specs/fido-registry-v2.2-rd-20210525.html#authenticator-attachment-hints">FIDO
* Registry of Predefined Values §3.4 Authenticator Attachment Hints</a>
*/
ATTACHMENT_HINT_WIFI_DIRECT(0x0100, "wifi_direct");
ATTACHMENT_HINT_WIFI_DIRECT(0x0100, "wifi_direct"),

/**
* This flag MAY be set to indicate that an external authenticator is able to communicate by
* ISO7816 messages with the FIDO User Device. As part of authenticator metadata, or when
* reporting characteristics through discovery, if this flag is set, the {@link
* #ATTACHMENT_HINT_WIRED} flag SHOULD also be set.
*
* @see <a
* href="https://fidoalliance.org/specs/common-specs/fido-registry-v2.3-rd-20260105.html#authenticator-attachment-hints">FIDO
* Registry of Predefined Values §3.4 Authenticator Attachment Hints</a>
*/
ATTACHMENT_HINT_SMART_CARD(0x0200, "smart-card");
Comment thread
emlun marked this conversation as resolved.
Comment thread
emlun marked this conversation as resolved.

private final int value;

Expand Down
Loading