bitwarden_exporters/cxf/mod.rs
1//! Credential Exchange Format (CXF)
2//!
3//! This module implements support for the Credential Exchange standard as defined by the FIDO
4//! Alliance.
5//!
6//! <https://fidoalliance.org/specifications-credential-exchange-specifications/>
7mod error;
8pub use error::CxfError;
9
10mod export;
11pub(crate) use export::build_cxf;
12pub use export::Account;
13mod import;
14pub(crate) use import::parse_cxf;
15mod card;
16mod login;