1.0.0 - This version may not be safe as it has not been updated for a long time. Find out if your coding project uses this component and get notified of any reported security vulnerabilities with Meterian-X Open Source Security Platform
Maintain your licence declarations and avoid unwanted licences to protect your IP the way you intended.
MIT - MIT LicenseA collection of password hashing and verification routines.
See the documentation for API reference.
Add the following to the [dependencies] section of your Cargo.toml:
pwhash = "1"use pwhash::bcrypt;
// Hash a password with default parameters.
let h_new = bcrypt::hash("password").unwrap();
// Verify a password against an existing hash.
let h = "$2y$05$bvIG6Nmid91Mu9RcmmWZfO\
5HJIMCT8riNW0hEp8f6/FuA2/mHZFpe";
assert!(bcrypt::verify("password", h));The following algorithms are currently implemented (in alphabetical order):
bcrypt
bsdi_crypt
md5_crypt
sha1_crypt
sha256_crypt
sha512_crypt
unix_crypt
Each algorithm resides in its eponymous module, and provides the following interface:
verify(): verify a password against a hash.
hash(): hash a password with default algorithm-spacific parameters.
hash_with(): hash a password with customized parameters.
There is also a convenience module unix which provides the functions
unix::crypt, a crypt(3) work-alike, and unix::verify.