Skip to content

Commit

Permalink
Add "hybrid" transport
Browse files Browse the repository at this point in the history
  • Loading branch information
MasterKale committed Jul 13, 2022
1 parent f114cc0 commit f2cb86e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions webauthn/helpers/structs.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ class AuthenticatorTransport(str, Enum):
`BLE`: Bluetooth Low Energy
`INTERNAL`: Direct connection (read: a platform authenticator)
`CABLE`: Cloud Assisted Bluetooth Low Energy
`HYBRID`: A combination of (often separate) data-transport and proximity mechanisms
https://www.w3.org/TR/webauthn-2/#enum-transport
"""
Expand All @@ -81,6 +82,7 @@ class AuthenticatorTransport(str, Enum):
BLE = "ble"
INTERNAL = "internal"
CABLE = "cable"
HYBRID = "hybrid"


class AuthenticatorAttachment(str, Enum):
Expand Down

0 comments on commit f2cb86e

Please sign in to comment.