bitwarden_core/mobile/
mod.rs

1//! Mobile specific functionality.
2//!
3//! This module consists of stop-gap functionality for the mobile clients until the SDK owns it's
4//! own state.
5
6pub mod crypto;
7mod kdf;
8
9mod client_kdf;
10mod crypto_client;
11
12pub use client_kdf::KdfClient;
13pub use crypto_client::CryptoClient;