bitwarden_vault/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#[cfg(feature = "uniffi")]
uniffi::setup_scaffolding!();
#[cfg(feature = "uniffi")]
mod uniffi_support;

mod cipher;
pub use cipher::*;
mod collection;
pub use collection::{Collection, CollectionView};
mod folder;
pub use folder::{Folder, FolderView};
mod password_history;
pub use password_history::{PasswordHistory, PasswordHistoryView};
mod domain;
pub use domain::GlobalDomains;
mod totp;
pub use totp::{generate_totp, generate_totp_cipher_view, TotpError, TotpResponse};
mod error;
pub use error::VaultParseError;
mod client_vault;
pub use client_vault::{ClientVault, ClientVaultExt};
mod client_totp;
mod mobile;
mod sync;
pub use sync::{SyncRequest, SyncResponse};