[package] name = "pw_hash" version = "0.1.1" authors = ["Ivan Nejgebauer , Mark Firman "] description = "A collection of password hashing routines in pure Rust. Fork of pwhash by inejge." homepage = "https://github.com/NamesMark/pwhash" repository = "https://github.com/NamesMark/pwhash" documentation = "https://docs.rs/pw_hash/latest/pw_hash/" readme = "README.md" license = "MIT" keywords = ["password", "hash", "hashing", "crypt"] categories = ["cryptography", "authentication"] edition = "2021" [dependencies] md-5 = "0.10.6" sha1 = "0.10.6" sha2 = "0.10.8" blowfish = { version = "0.9.1", features = ["bcrypt"] } hmac = "0.12.1" byteorder = "1.5.0" rand = "0.8.5"