//! This is an implementation of KeePass database file reader in Rust.
//! This crate aims to work with [KDBX version 4](https://keepass.info/help/kb/kdbx_4.html) format.
pub use crate*;
pub use crateError;
pub use crateKdbx4;
pub use crateCompositeKey;
pub type Result<T> = Result;