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
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: 2 additions & 0 deletions argon2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ readme = "README.md"
[dependencies]
base64ct = "1"
blake2 = { version = "0.9", default-features = false }

# optional dependencies
password-hash = { version = "0.3", optional = true }
rayon = { version = "1", optional = true }
zeroize = { version = ">=1, <1.5", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion bcrypt-pbkdf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ readme = "README.md"
[dependencies]
blowfish = { version = "0.8", features = ["bcrypt"] }
crypto-mac = "0.11"
pbkdf2 = { version = "0.8", default-features = false, path = "../pbkdf2" }
pbkdf2 = { version = "0.9", default-features = false, path = "../pbkdf2" }
sha2 = { version = "0.9", default-features = false }
zeroize = { version = ">=1, <1.5", default-features = false }

Expand Down
17 changes: 17 additions & 0 deletions pbkdf2/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,23 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.9.0 (2021-08-27)
### Added
- GOST test vectors ([#191])

### Changed
- Bump `password-hash` to v0.3 ([#217], [RustCrypto/traits#724])
- Use `resolver = "2"`; MSRV 1.51+ ([#220])

### Removed
- `McfHasher` impl on `Pbkdf2` ([#219])

[#191]: https://github.com/RustCrypto/password-hashing/pull/191
[#217]: https://github.com/RustCrypto/password-hashing/pull/217
[#219]: https://github.com/RustCrypto/password-hashing/pull/219
[#220]: https://github.com/RustCrypto/password-hashing/pull/220
[RustCrypto/traits#724]: https://github.com/RustCrypto/traits/pull/724

## 0.8.0 (2021-04-29)
### Changed
- Bump `password-hash` crate dependency to v0.2 ([#164])
Expand Down
3 changes: 2 additions & 1 deletion pbkdf2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pbkdf2"
version = "0.8.0" # Also update html_root_url in lib.rs when bumping this
version = "0.9.0" # Also update html_root_url in lib.rs when bumping this
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
description = "Generic implementation of PBKDF2"
Expand All @@ -14,6 +14,7 @@ readme = "README.md"
[dependencies]
crypto-mac = "0.11"

# optional dependencies
rayon = { version = "1", optional = true }
hmac = { version = "0.11", default-features = false, optional = true }
password-hash = { version = "0.3", default-features = false, optional = true, features = ["rand_core"] }
Expand Down
2 changes: 1 addition & 1 deletion pbkdf2/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
#![doc(
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
html_root_url = "https://docs.rs/pbkdf2/0.8.0"
html_root_url = "https://docs.rs/pbkdf2/0.9.0"
)]

#[cfg(feature = "std")]
Expand Down
6 changes: 4 additions & 2 deletions scrypt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,13 @@ readme = "README.md"

[dependencies]
hmac = "0.11"
password-hash = { version = "0.3", default-features = false, features = ["rand_core"], optional = true }
pbkdf2 = { version = "0.8", default-features = false, path = "../pbkdf2" }
pbkdf2 = { version = "0.9", default-features = false, path = "../pbkdf2" }
salsa20 = { version = "0.8", default-features = false, features = ["expose-core"] }
sha2 = { version = "0.9", default-features = false }

# optional dependencies
password-hash = { version = "0.3", default-features = false, features = ["rand_core"], optional = true }

[dev-dependencies]
password-hash = { version = "0.3", features = ["rand_core"] }

Expand Down
2 changes: 2 additions & 0 deletions sha-crypt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ readme = "README.md"

[dependencies]
sha2 = { version = "0.9", default-features = false }

# optional dependencies
rand = { version = "0.8", optional = true }
subtle = { version = ">=2, <2.4", optional = true, default-features = false }

Expand Down