mirror of
https://github.com/logos-messaging/libchat.git
synced 2026-02-11 09:23:26 +00:00
* feat: shared storage crate * chore: remove backup codes * chore: remove feature gates * chore: clean out of order demo * chore: refactor create session * chore: shorten error name * chore: clean errors * chore: remove table exist check * chore: remove unused traits * chore: remove unused functions. * chore: use tempfile for examples
15 lines
324 B
Rust
15 lines
324 B
Rust
pub mod aead;
|
|
pub mod errors;
|
|
pub mod ffi;
|
|
pub mod hkdf;
|
|
pub mod keypair;
|
|
pub mod reader;
|
|
pub mod state;
|
|
pub mod storage;
|
|
pub mod types;
|
|
|
|
pub use keypair::InstallationKeyPair;
|
|
pub use state::{Header, RatchetState, SkippedKey};
|
|
pub use storage::StorageConfig;
|
|
pub use storage::{RatchetSession, RatchetStorage, SessionError};
|