2 个版本
0.1.1 | 2023年5月7日 |
---|---|
0.1.0 | 2023年5月7日 |
1419 在 加密学
每月 21 次下载
36KB
733 行
mini-rcrypt
: OpenBSD Blowfish 密码散列代码的最小 Rust 实现。
使用方法
use mini_rcrypt::BCrypt;
let salt = BCrypt::gensalt(5).unwrap();
let hash = BCrypt::hashpw("test".to_owned(), salt).unwrap();
let check = BCrypt::checkpw("test".to_owned(), hash);
assert!(check);