hash: hash crate for all hashing needs, password

This commit is contained in:
Philippe Loctaux 2023-03-05 23:28:14 +01:00
parent 7851fdae1e
commit 8af226cd05
5 changed files with 128 additions and 0 deletions

9
crates/hash/Cargo.toml Normal file
View file

@ -0,0 +1,9 @@
[package]
name = "hash"
version = "0.0.0"
edition = "2021"
[dependencies]
argon2 = { version = "0.4.1" }
rand_core = { version = "0.6.4", features = ["std"] }
thiserror = { workspace = true }