Skip to content

Commit

Permalink
feat protocol: added authentication transportation hybrid
Browse files Browse the repository at this point in the history
extended AuthenticatorTransport type with new hybrid value incl. description from official documentation

Fixes go-webauthn#74
  • Loading branch information
naetraga committed Nov 30, 2022
1 parent 8407a96 commit 2fdf463
Showing 1 changed file with 2 additions and 0 deletions.
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"
)

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

0 comments on commit 2fdf463

Please sign in to comment.