#[cfg(feature = "fido-support")]
pub mod generate;
#[cfg(any(feature = "fido-support", feature = "fido-lite"))]
pub mod parsing;
#[cfg(any(feature = "fido-support", feature = "fido-lite"))]
pub use parsing::{AuthData, CoseKey};
#[cfg(feature = "fido-support")]
pub mod signing;
#[cfg(any(feature = "fido-support", feature = "fido-lite"))]
pub mod verification;
#[cfg(feature = "fido-support")]
pub use generate::FIDOSSHKey;