#password #hash #hashed

hashed_password

Password hasher

7 stable releases

1.3.0 Sep 23, 2024
1.2.0 Sep 23, 2024
1.1.1 Sep 23, 2024
1.0.3 Sep 23, 2024

#231 in Authentication

Download history 483/week @ 2024-09-19 109/week @ 2024-09-26 15/week @ 2024-10-03 10/week @ 2024-10-10 6/week @ 2024-10-17

192 downloads per month

MIT license

6KB
80 lines

hashed_password

A rust library to handle password storage.

Usage

First, create a HashedPassword:

use hashed_password::HashedPassword;

let hashed = HashedPassword::from_plain("MyPlainPassword", b"my-secret");
println!("hashed data: {}", hashed.as_str());

Then, validate any plain:

hashed.validate("MyPlainPassword", b"my-secret"); // true
hashed.validate("MyPlainPassword", b"wrong-secret"); // false
hashed.validate("WrongPlainPassword", b"my-secret"); // false

features

  • serde: enable serde
  • sqlx: enable sqlx and derive sqlx::FromRow

Dependencies

~0.6–2.2MB
~42K SLoC