Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat protocol implement device eligible and backup flags + added authentication transportation hybrid #75

Closed
wants to merge 3 commits into from
Closed
Changes from 1 commit
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
Next Next commit
feat protocol: added authentication transportation hybrid
extended AuthenticatorTransport type with new hybrid value incl. description from official documentation

Fixes #74
  • Loading branch information
naetraga committed Nov 30, 2022
commit 2fdf4635d14c72b3e2bcc7c6b03f4081c1c55989
2 changes: 2 additions & 0 deletions protocol/authenticator.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,8 @@ const (
BLE AuthenticatorTransport = "ble"
// Internal the client should use an internal source like a TPM or SE
Internal AuthenticatorTransport = "internal"
// HYBRID indicates the respective authenticator can be contacted using a combination of (often separate) data-transport and proximity mechanisms. This supports, for example, authentication on a desktop computer using a smartphone.
HYBRID AuthenticatorTransport = "hybrid"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
HYBRID AuthenticatorTransport = "hybrid"
Hybrid AuthenticatorTransport = "hybrid"

)

// A WebAuthn Relying Party may require user verification for some of its operations but not for others,
Expand Down