Skip to content

Commit

Permalink
pbkdf2 v0.8.0 (#167)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri committed Apr 29, 2021
1 parent 3b5089f commit 2a25a7a
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 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 bcrypt-pbkdf/Cargo.toml
Expand Up @@ -13,7 +13,7 @@ readme = "README.md"
[dependencies]
blowfish = { version = "0.7", features = ["bcrypt"] }
crypto-mac = "0.11"
pbkdf2 = { version = "0.7", default-features = false, path = "../pbkdf2" }
pbkdf2 = { version = "0.8", default-features = false, path = "../pbkdf2" }
sha2 = { version = "0.9", default-features = false }
zeroize = { version = "1", default-features = false }

Expand Down
8 changes: 8 additions & 0 deletions pbkdf2/CHANGELOG.md
Expand Up @@ -5,6 +5,14 @@ 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.8.0 (2021-04-29)
### Changed
- Bump `password-hash` crate dependency to v0.2 ([#164])
- Bump `hmac` and `crypto-mac` crate deps to v0.11 ([#165])

[#164]: https://github.com/RustCrypto/password-hashing/pull/164
[#165]: https://github.com/RustCrypto/password-hashing/pull/165

## 0.7.5 (2021-03-27)
### Fixed
- Pin `password-hash` to v0.1.2 or newer ([#151])
Expand Down
2 changes: 1 addition & 1 deletion pbkdf2/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "pbkdf2"
version = "0.7.5"
version = "0.8.0"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
description = "Generic implementation of PBKDF2"
Expand Down
2 changes: 1 addition & 1 deletion scrypt/Cargo.toml
Expand Up @@ -15,7 +15,7 @@ readme = "README.md"
base64ct = { version = "1", default-features = false, features = ["alloc"], optional = true }
hmac = "0.11"
password-hash = { version = "0.2", default-features = false, features = ["rand_core"], optional = true }
pbkdf2 = { version = "0.7", default-features = false, path = "../pbkdf2" }
pbkdf2 = { version = "0.8", default-features = false, path = "../pbkdf2" }
salsa20 = { version = "0.8", default-features = false, features = ["expose-core"] }
sha2 = { version = "0.9", default-features = false }

Expand Down

0 comments on commit 2a25a7a

Please sign in to comment.