We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c9160a commit 0f70bf9Copy full SHA for 0f70bf9
2 files changed
libwebauthn/src/proto/ctap1/model.rs
@@ -26,6 +26,7 @@ impl TryFrom<&Ctap2Transport> for Ctap1Transport {
26
Ctap2Transport::Usb => Ok(Ctap1Transport::Usb),
27
Ctap2Transport::Nfc => Ok(Ctap1Transport::Nfc),
28
Ctap2Transport::Internal => Err(CtapError::UnsupportedOption),
29
+ Ctap2Transport::Hybrid => Err(CtapError::UnsupportedOption),
30
}
31
32
libwebauthn/src/proto/ctap2/model.rs
@@ -125,6 +125,7 @@ pub enum Ctap2Transport {
125
Nfc,
126
Usb,
127
Internal,
128
+ Hybrid,
129
130
131
impl From<&Ctap1Transport> for Ctap2Transport {
0 commit comments