serde_cbor #1

Open
shimun wants to merge 8 commits from serde_cbor into master
3 changed files with 11 additions and 1 deletions
Showing only changes of commit 0a2a054233 - Show all commits

View File

@ -922,6 +922,8 @@ mod test {
panic!()
}
//TODO: test Trezor response since tr isn't running fido 2.1 yet
#[test]
fn response_yubikey() {
test_response(&[

View File

@ -0,0 +1,7 @@
use thiserror::Error;
#[derive(Clone, PartialEq, Eq, Debug)]
pub enum ProtocolError {
CborEncode,
CborDecode { data: Vec<u8> },
}

View File

@ -1,3 +1,4 @@
mod cbor;
mod error;
pub use self::cbor::*;
pub use self::error::*;