#password-hashing #argon2 #helper #requirements #hash #salt #function

argon_hash_password

为常见的argon2密码哈希要求提供辅助函数

3个版本

0.1.2 2023年1月21日
0.1.1 2023年1月21日
0.1.0 2022年12月22日

#1706加密学

Download history • Rust 包仓库 17/week @ 2024-03-14 • Rust 包仓库 10/week @ 2024-03-21 • Rust 包仓库 30/week @ 2024-03-28 • Rust 包仓库 14/week @ 2024-04-04 • Rust 包仓库 7/week @ 2024-04-11 • Rust 包仓库 4/week @ 2024-04-18 • Rust 包仓库 11/week @ 2024-04-25 • Rust 包仓库 4/week @ 2024-05-02 • Rust 包仓库 4/week @ 2024-05-09 • Rust 包仓库 10/week @ 2024-05-16 • Rust 包仓库 9/week @ 2024-05-23 • Rust 包仓库 11/week @ 2024-05-30 • Rust 包仓库 57/week @ 2024-06-06 • Rust 包仓库 74/week @ 2024-06-13 • Rust 包仓库 27/week @ 2024-06-20 • Rust 包仓库 46/week @ 2024-06-27 • Rust 包仓库

每月206次下载
用于 2 crates

自定义许可证

7KB
99

Argon哈希密码

为常见的argon2密码哈希要求提供辅助函数

使用盐创建哈希密码

let (hash, salt) = argon_hash_password::create_hash_and_salt("PlaintextPassword");

然后可以将哈希和盐存储起来

检查哈希

let check = argon_hash_password::check_password_matches("PlaintextPassword", hash, salt);

match check {
  true => println!("Correct plaintext password provided"),
  false => println!("Incorrect plaintext password provided"),
}

lib.rs:

使用argon2创建加盐哈希密码的函数

使用盐创建哈希密码

let (hash, salt) = argon_hash_password::create_hash_and_salt("PlaintextPassword").unwrap();

然后可以将哈希和盐存储起来

检查哈希

let check = argon_hash_password::check_password_matches_hash("PlaintextPassword", hash, salt).unwrap();
match check {
    true => println!("Correct plaintext password provided"),
    false => println!("Incorrect plaintext password provided"),
}

依赖关系

~0.9–1.1MB
~22K SLoC