@ -1,5 +1,5 @@
use crate::{authenticator::client_pin::AuthProtocolVersion, extensions};
use crate::Sha256Hash;
use fido_common::credential::public_key;
use std::{collections::BTreeMap, usize};
@ -1,6 +1,6 @@
use bounded_integer::BoundedUsize;
use std::collections::BTreeSet;
#[derive(Clone, Copy, PartialEq, Eq, Hash, Debug)]
pub enum AuthProtocolVersion {
@ -1,4 +1,4 @@
use std::collections::{BTreeMap};
use std::collections::BTreeMap;
use super::client_pin::AuthProtocolVersion;
@ -8,4 +8,3 @@ pub mod credential;
pub mod device;
pub mod reset;
pub mod selection;
@ -10,12 +10,11 @@ pub mod prelude {
};
pub use fido_common::Sha256Hash;
}
use prelude::*;
pub mod authenticator;
pub mod extensions;
/// Defines the raw CTAP operations
pub trait Ctap2_2Authenticator {
#[allow(clippy::missing_errors_doc)]