bitwarden_exporters/cxf/mod.rs
//! Credential Exchange Format (CXF)
//!
//! This module implements support for the Credential Exchange standard as defined by the FIDO
//! Alliance.
//!
//! <https://fidoalliance.org/specifications-credential-exchange-specifications/>
mod error;
pub use error::CxfError;
mod export;
pub(crate) use export::build_cxf;
pub use export::Account;
mod import;
pub(crate) use import::parse_cxf;
mod card;
mod login;