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 #74
  • Loading branch information
naetraga authored and james-d-elliott committed Dec 7, 2022
1 parent 6ec21f1 commit 38c6aad
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 38c6aad

Please sign in to comment.