Skip to content

Commit

Permalink
scrypt: enable rand_core feature of password-hash (#139)
Browse files Browse the repository at this point in the history
This makes the SaltString::generate function available.

Related: #130
  • Loading branch information
tarcieri committed Feb 20, 2021
1 parent c2dee48 commit 175f5e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scrypt/Cargo.toml
Expand Up @@ -14,7 +14,7 @@ readme = "README.md"
[dependencies]
base64ct = { version = "0.2", default-features = false, features = ["alloc"], optional = true }
hmac = "0.10"
password-hash = { version = "0.1", default-features = false, optional = true }
password-hash = { version = "0.1", default-features = false, features = ["rand_core"], optional = true }
pbkdf2 = { version = "0.7", default-features = false, path = "../pbkdf2" }
salsa20 = { version = "0.7", default-features = false, features = ["expose-core"] }
sha2 = { version = "0.9", default-features = false }
Expand Down

0 comments on commit 175f5e2

Please sign in to comment.