diff --git a/Cargo.lock b/Cargo.lock index bf75a6a74..834566b46 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -956,9 +956,9 @@ dependencies = [ [[package]] name = "pbkdf2" -version = "0.13.0-rc.5" +version = "0.13.0-rc.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c015873c38594dfb7724f90b2ed912a606697393bda2d39fd83c2394301f808a" +checksum = "9fb9b101849c3ddab38905781f5aa7ae14ea06e87befaf0e7b003e5d3186250d" dependencies = [ "digest", "hmac", diff --git a/phc/src/error.rs b/phc/src/error.rs index 36f2bc37d..d0a3e08b8 100644 --- a/phc/src/error.rs +++ b/phc/src/error.rs @@ -25,6 +25,7 @@ pub enum Error { /// - [`Ordering::Equal`]: Size is not exactly as `expected`. /// - [`Ordering::Greater`]: Size is too long. provided: Ordering, + /// Expected output size in relation to `provided`. /// /// - [`Ordering::Less`]: Minimum size. diff --git a/pkcs5/Cargo.toml b/pkcs5/Cargo.toml index 23c2ab63f..40b5aae80 100644 --- a/pkcs5/Cargo.toml +++ b/pkcs5/Cargo.toml @@ -24,9 +24,9 @@ cbc = { version = "0.2.0-rc.2", optional = true } aes = { version = "0.9.0-rc.2", optional = true, default-features = false } aes-gcm = { version = "0.11.0-rc.2", optional = true, default-features = false, features = ["aes"] } des = { version = "0.9.0-rc.2", optional = true, default-features = false } -pbkdf2 = { version = "0.13.0-rc.5", optional = true, default-features = false, features = ["hmac"] } +pbkdf2 = { version = "0.13.0-rc.6", optional = true, default-features = false, features = ["hmac"] } rand_core = { version = "0.10.0-rc-3", optional = true, default-features = false } -scrypt = { version = "0.12.0-rc.7", optional = true, default-features = false } +scrypt = { version = "0.12.0-rc.8", optional = true, default-features = false } sha1 = { version = "0.11.0-rc.3", optional = true, default-features = false } sha2 = { version = "0.11.0-rc.3", optional = true, default-features = false }