4 releases (breaking)
0.5.0 | Mar 18, 2023 |
---|---|
0.4.0 | Feb 14, 2023 |
0.3.0 | Dec 23, 2022 |
0.2.0 | Dec 20, 2022 |
#288 in No standard library
Used in 3 crates
35KB
707 lines
Overview
For preamble to design philosophy of this crate see GitHub project page.
psh
is a password generator and a password manager library which produces deterministic
passwords for a set of user inputs. It can store previously used aliases and their password
derivation settings in encrypted form in its internal database at $HOME/.psh.db
.
There is a binary crate psh-cli
-- a CLI utility that leverages psh
functionality.
It can be installed using the following cargo
command:
$ cargo install psh-cli
Below is an example of how to use psh
in your code:
use psh::{Psh, ZeroizingString, store::PshMemDb};
let master_password = ZeroizingString::new(
"this_better_be_a_strong_password".to_string());
let psh = Psh::new(
master_password,
PshMemDb::new(),
).expect("Error initializing Psh");
let alias = ZeroizingString::new(
"my_secret_box".to_string());
let password = psh.derive_password(&alias, None, None);
For greater security it's possible to supply a secret:
# use psh::{Psh, ZeroizingString, store::PshMemDb};
#
# let master_password = ZeroizingString::new(
# "this_better_be_a_strong_password".to_string());
# let psh = Psh::new(
# master_password,
# PshMemDb::new(),
# ).expect("Error initializing Psh");
# let alias = ZeroizingString::new(
# "my_secret_box".to_string());
let secret = ZeroizingString::new(
"an_easy_to_remember_secret_word".to_string());
let password = psh.derive_password(&alias, Some(secret), None);
The third argument to derive_password()
is CharSet
:
# use psh::{Psh, ZeroizingString, store::PshMemDb};
use psh::CharSet;
#
# let master_password = ZeroizingString::new(
# "this_better_be_a_strong_password".to_string());
# let psh = Psh::new(
# master_password,
# PshMemDb::new(),
# ).expect("Error initializing Psh");
# let alias = ZeroizingString::new(
# "my_secret_box".to_string());
// This password should consist of [a-zA-Z0-9] characters only
let password = psh.derive_password(&alias, None, Some(CharSet::Reduced));
To store/remove alias and its settings to/from psh
database:
# use psh::{CharSet, Psh, ZeroizingString, store::PshMemDb};
#
# let master_password = ZeroizingString::new(
# "this_better_be_a_strong_password".to_string());
let mut psh = Psh::new(
master_password,
PshMemDb::new(),
).expect("Error initializing Psh");
# let alias = ZeroizingString::new(
# "my_secret_box".to_string());
let use_secret = true;
let charset = CharSet::RequireAll;
// Store alias
psh.append_alias_to_db(&alias, Some(use_secret), Some(charset))
.expect("Error storing alias");
// Remove alias
psh.remove_alias_from_db(&alias)
.expect("Error removing alias");
Note that in the examples above in-memory PshMemDb
is used as a database backend.
There are other backends available: psh_db::PshDb
which uses plain file and
psh_webdb::PshWebDb
which uses LocalStorage Web API.
Dependencies
~4MB
~79K SLoC