Expand description
§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:
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::CharSet;
// 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:
let mut psh = Psh::new(
master_password,
PshMemDb::new(),
).expect("Error initializing Psh");
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.
Re-exports§
pub use store::PshStore;
Modules§
Structs§
- Psh
psh
interface- Zeroizing
String - Safe
String
wrapper which employszeroize
crate to wipe memory of its content
Enums§
- CharSet
- Character set for a derived password
Constants§
- ALIAS_
MAX_ BYTES - Maximum length for alias in bytes
- MASTER_
PASSWORD_ MIN_ LEN - Minimum length for master password in characters