Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .typos.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ extend-ignore-re = [
]

[default.extend-words]
consts = "consts"
"GOST" = "GOST"
# Variable name in yescrypt
"clen" = "clen"
75 changes: 41 additions & 34 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions argon2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "argon2"
version = "0.6.0-rc.6"
version = "0.6.0-rc.7"
description = """
Pure Rust implementation of the Argon2 password hashing function with support
for the Argon2d, Argon2i, and Argon2id algorithmic variants
Expand All @@ -18,12 +18,12 @@ rust-version = "1.85"

[dependencies]
base64ct = "1.7"
blake2 = { version = "0.11.0-rc.3", default-features = false }
blake2 = { version = "0.11.0-rc.5", default-features = false }

# optional dependencies
kdf = { version = "0.1", optional = true }
rayon = { version = "1.7", optional = true }
password-hash = { version = "0.6.0-rc.11", optional = true, features = ["phc"] }
password-hash = { version = "0.6.0-rc.12", optional = true, features = ["phc"] }
zeroize = { version = "1", default-features = false, optional = true }

[target.'cfg(any(target_arch = "x86", target_arch = "x86_64"))'.dependencies]
Expand Down
10 changes: 5 additions & 5 deletions balloon-hash/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "balloon-hash"
version = "0.5.0-rc.4"
version = "0.5.0-rc.5"
description = "Pure Rust implementation of the Balloon password hashing function"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand All @@ -14,18 +14,18 @@ edition = "2024"
rust-version = "1.85"

[dependencies]
digest = { version = "0.11.0-rc.4", default-features = false }
crypto-bigint = { version = "0.7.0-rc.9", default-features = false, features = ["hybrid-array"] }
digest = { version = "0.11.0-rc.11", default-features = false }
crypto-bigint = { version = "0.7.0-rc.25", default-features = false, features = ["hybrid-array"] }

# optional dependencies
kdf = { version = "0.1", optional = true }
password-hash = { version = "0.6.0-rc.11", optional = true, default-features = false, features = ["phc"] }
password-hash = { version = "0.6.0-rc.12", optional = true, default-features = false, features = ["phc"] }
rayon = { version = "1.7", optional = true }
zeroize = { version = "1", default-features = false, optional = true }

[dev-dependencies]
hex-literal = "1"
sha2 = "0.11.0-rc.3"
sha2 = "0.11.0-rc.5"

[features]
default = ["alloc", "getrandom", "password-hash"]
Expand Down
8 changes: 4 additions & 4 deletions bcrypt-pbkdf/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bcrypt-pbkdf"
version = "0.11.0-rc.3"
version = "0.11.0-rc.6"
description = "bcrypt-pbkdf password-based key derivation function"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand All @@ -14,9 +14,9 @@ edition = "2024"
rust-version = "1.85"

[dependencies]
blowfish = { version = "0.10.0-rc.2", features = ["bcrypt"] }
pbkdf2 = { version = "0.13.0-rc.8", default-features = false }
sha2 = { version = "0.11.0-rc.3", default-features = false }
blowfish = { version = "0.10.0-rc.3", features = ["bcrypt"] }
pbkdf2 = { version = "0.13.0-rc.9", default-features = false }
sha2 = { version = "0.11.0-rc.5", default-features = false }

# optional features
zeroize = { version = "1", default-features = false, optional = true }
Expand Down
2 changes: 1 addition & 1 deletion bcrypt-pbkdf/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ use sha2::{
Digest, Sha512,
digest::{
FixedOutput, MacMarker, Output, OutputSizeUser, Update,
crypto_common::{Key, KeyInit, KeySizeUser},
common::{Key, KeyInit, KeySizeUser},
typenum::U32,
},
};
Expand Down
10 changes: 5 additions & 5 deletions password-auth/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "password-auth"
version = "1.1.0-rc.1"
version = "1.1.0-rc.2"
description = """
Password authentication library with a focus on simplicity and ease-of-use,
including support for Argon2, PBKDF2, and scrypt password hashing algorithms
Expand All @@ -18,12 +18,12 @@ rust-version = "1.85"

[dependencies]
getrandom = { version = "0.4.0-rc.0", default-features = false }
password-hash = { version = "0.6.0-rc.11", features = ["alloc", "getrandom", "phc"] }
password-hash = { version = "0.6.0-rc.12", features = ["alloc", "getrandom", "phc"] }

# optional dependencies
argon2 = { version = "0.6.0-rc.6", optional = true, default-features = false, features = ["alloc", "password-hash"] }
pbkdf2 = { version = "0.13.0-rc.8", optional = true, default-features = false, features = ["phc"] }
scrypt = { version = "0.12.0-rc.9", optional = true, default-features = false, features = ["phc"] }
argon2 = { version = "0.6.0-rc.7", optional = true, default-features = false, features = ["alloc", "password-hash"] }
pbkdf2 = { version = "0.13.0-rc.9", optional = true, default-features = false, features = ["phc"] }
scrypt = { version = "0.12.0-rc.10", optional = true, default-features = false, features = ["phc"] }

[features]
default = ["argon2"]
Expand Down
20 changes: 10 additions & 10 deletions pbkdf2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pbkdf2"
version = "0.13.0-rc.8"
version = "0.13.0-rc.9"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
description = "Generic implementation of PBKDF2"
Expand All @@ -17,20 +17,20 @@ rust-version = "1.85"
digest = { version = "0.11.0-rc.4", features = ["mac"] }

# optional dependencies
hmac = { version = "0.13.0-rc.3", optional = true, default-features = false }
hmac = { version = "0.13.0-rc.5", optional = true, default-features = false }
kdf = { version = "0.1", optional = true }
mcf = { version = "0.6.0-rc.3", optional = true, default-features = false, features = ["base64"] }
password-hash = { version = "0.6.0-rc.11", default-features = false, optional = true }
sha1 = { version = "0.11.0-rc.3", default-features = false, optional = true }
sha2 = { version = "0.11.0-rc.3", default-features = false, optional = true }
password-hash = { version = "0.6.0-rc.12", default-features = false, optional = true }
sha1 = { version = "0.11.0-rc.5", default-features = false, optional = true }
sha2 = { version = "0.11.0-rc.5", default-features = false, optional = true }

[dev-dependencies]
hmac = "0.13.0-rc.3"
belt-hash = "0.2.0-rc.5"
hmac = "0.13.0-rc.5"
hex-literal = "1"
sha1 = "0.11.0-rc.3"
sha2 = "0.11.0-rc.3"
streebog = "0.11.0-rc.3"
belt-hash = "0.2.0-rc.3"
sha1 = "0.11.0-rc.5"
sha2 = "0.11.0-rc.5"
streebog = "0.11.0-rc.5"

[features]
default = ["hmac"]
Expand Down
Loading