Skip to content

Commit

Permalink
pbkdf2: enable rand_core feature of password-hash (#130)
Browse files Browse the repository at this point in the history
This makes the `SaltString::generate` function available.
  • Loading branch information
tarcieri committed Feb 8, 2021
1 parent e5171f9 commit 182d80c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pbkdf2/Cargo.toml
Expand Up @@ -17,7 +17,7 @@ crypto-mac = "0.10"
rayon = { version = "1", optional = true }
base64ct = { version = "0.2", default-features = false, optional = true }
hmac = { version = "0.10", default-features = false, optional = true }
password-hash = { version = "0.1", default-features = false, optional = true }
password-hash = { version = "0.1", default-features = false, optional = true, features = ["rand_core"] }
sha1 = { version = "0.9", package = "sha-1", default-features = false, optional = true }
sha2 = { version = "0.9", default-features = false, optional = true }

Expand Down

0 comments on commit 182d80c

Please sign in to comment.