rusterpassword

Crates.iorusterpassword
lib.rsrusterpassword
version0.2.3
sourcesrc
created_at2015-10-31 16:05:13.49588
updated_at2022-10-02 00:43:49.988274
descriptionAn implementation of the Master Password algorithm.
homepagehttps://codeberg.org/valpackett/rusterpassword
repositoryhttps://codeberg.org/valpackett/rusterpassword
max_upload_size
id3345
size15,327
Val Packett (valpackett)

documentation

README

crates.io API Docs unlicense

rusterpassword

A Rust implementation of the Spectre / Master Password algorithm.

Uses secstr secure strings and libsodium through sodiumoxide's underlying libsodium-sys.

Also includes a C API for calling from other languages.

Usage

use sodiumoxide;
use secstr::*;
use rusterpassword::*;

fn main() {
    sodiumoxide::init();
    let master_key = gen_master_key(SecStr::from("Correct Horse Battery Staple"), "Cosima Niehaus").unwrap();
    let site_seed = gen_site_seed(&master_key, "twitter.com", 5).unwrap();
    let password = gen_site_password(site_seed, TEMPLATES_MAXIMUM);
}

License

This is free and unencumbered software released into the public domain.
For more information, please refer to the UNLICENSE file or unlicense.org.

Commit count: 0

cargo fmt