kdbx-rs 0.5.2

Keepass 2 (KDBX) password database parsing and creation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod block_cipher;
mod hmac;
mod kdbx3;
mod pipeline;
pub(crate) mod random;
mod stream_cipher;

pub(crate) use self::hmac::{HMacReader, HmacWriter};
pub(crate) use self::stream_cipher::{
    StreamCipherReader, StreamCipherWriter, StreamCipherWriterExt,
};
pub(crate) use block_cipher::{BlockCipherReader, BlockCipherWriter, BlockCipherWriterExt};
pub(crate) use kdbx3::HashedBlockReader;
pub(crate) use pipeline::{kdbx3_read_stream, kdbx4_read_stream, kdbx4_write_stream};