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 api_key;
16mod card;
17mod editable_field;
18mod identity;
19#[cfg(test)]
20mod import_sample_tests;
21mod login;
22mod note;
23mod ssh;
24mod wifi;