bitwarden_exporters/cxf/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! 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;