keepass

KeePass .kdbx database file parser for Rust
Example
extern crate keepass;
use keepass::{Database, Node, Result, Error};
use std::fs::File;
fn main() -> Result<()> {
let path = std::path::Path::new("tests/resources/test_db_with_password.kdbx");
let db = Database::open(
&mut File::open(path)?, Some("demopass"), None )?;
for node in &db.root {
match node {
Node::Group(g) => {
println!("Saw group '{0}'", g.name);
},
Node::Entry(e) => {
let title = e.get_title().unwrap();
let user = e.get_username().unwrap();
let pass = e.get_password().unwrap();
println!("Entry '{0}': '{1}' : '{2}'", title, user, pass);
}
}
}
Ok(())
}
Installation
Add the following to the dependencies section of your Cargo.toml:
[dependencies]
keepass = "*"
Performance note: Please set the RUSTFLAGS environment variable when compiling to enable CPU-specific optimizations (this greatly affects the speed of the AES key derivation):
export RUSTFLAGS='-C target-cpu=native'
License
MIT