Struct kdbx4::Kdbx4[][src]

pub struct Kdbx4 { /* fields omitted */ }
Expand description

Opens KeePass KDBX4 database.

Use CompositeKey and open with Path to your database or open_bytes with a reference to bytes already read beforehand.

Example

use kdbx4::{Kdbx4,CompositeKey};

let key = CompositeKey::new(Some("P@ssW0rd"), None::<String>).unwrap();
let db = Kdbx4::open("~/passwords.kdbx", key).unwrap();

assert!(db.entries().len() >= 0);

Implementations

Returns opened Database from Path.

Example
let db = Kdbx4::open("~/passwords.kdbx", key).unwrap();

assert!(db.entries().len() >= 0);

Returns opened Database reading it from provided bytes.

Example
let mut bytes = Vec::new();

let mut stream = TcpStream::connect("127.0.0.1:8080").unwrap();
stream.read_to_end(&mut bytes);

let db = Kdbx4::open_bytes(bytes, key).unwrap();

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.