Skip to content

Commit

Permalink
pbkdf2: bump dependency to v0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri committed Jun 10, 2020
1 parent e02e069 commit 6fa4212
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pbkdf2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ byteorder = { version = "1", default-features = false }

rayon = { version = "1", optional = true }
base64 = { version = "0.9", optional = true }
rand = { version = "0.5", optional = true }
rand = { version = "0.7", optional = true }
hmac = { version = "0.8", optional = true }
sha2 = { version = "0.9", optional = true }
subtle = { version = "2", default-features = false , optional = true }
Expand Down
3 changes: 2 additions & 1 deletion pbkdf2/src/simple.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ use std::string::ToString;
use crate::errors::CheckError;
use base64;
use hmac::Hmac;
use rand::{OsRng, RngCore};
use rand::RngCore;
use rand::rngs::OsRng;
use sha2::Sha256;
use subtle::ConstantTimeEq;

Expand Down

0 comments on commit 6fa4212

Please sign in to comment.