Skip to content

Commit bfb3b20

Browse files
authored
hkdf v0.13.0 (#195)
## Added - New `Hkdf` and `HkdfExtract` type aliases for `GenericHkdf` and `GenericHkdfExtract` (#155) - Implement `kdf::Kdf` for `GenericHkdfExtract` (#173) ## Changed - Bump MSRV to 1.85 and edition to 2024 (#114) - Bump `hmac` dependency to v0.13 - Use `digest::EagerHash` (#148) - Unseal `HmacImpl` trait (#154) - Rename `Hkdf` and `HkdfExtract` to `GenericHkdf` and `GenericHkdfExtract` respectively (#155) - Use simplified `H: HmacImpl` bounds (#155) ## Removed - `std` crate feature (#105)
1 parent 8834f33 commit bfb3b20

3 files changed

Lines changed: 12 additions & 4 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

hkdf/CHANGELOG.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,27 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## 0.13.0 (unreleased)
7+
## 0.13.0 (2026-03-30)
88
### Added
9+
- New `Hkdf` and `HkdfExtract` type aliases for `GenericHkdf` and `GenericHkdfExtract` ([#155])
910
- Implement `kdf::Kdf` for `GenericHkdfExtract` ([#173])
1011

1112
### Changed
12-
- Removed `std` crate feature ([#105])
1313
- Bump MSRV to 1.85 and edition to 2024 ([#114])
1414
- Bump `hmac` dependency to v0.13
15+
- Use `digest::EagerHash` ([#148])
1516
- Unseal `HmacImpl` trait ([#154])
17+
- Rename `Hkdf` and `HkdfExtract` to `GenericHkdf` and `GenericHkdfExtract` respectively ([#155])
18+
- Use simplified `H: HmacImpl` bounds ([#155])
19+
20+
### Removed
21+
- `std` crate feature ([#105])
1622

1723
[#105]: https://github.com/RustCrypto/KDFs/pull/105
1824
[#114]: https://github.com/RustCrypto/KDFs/pull/114
25+
[#148]: https://github.com/RustCrypto/KDFs/pull/148
1926
[#154]: https://github.com/RustCrypto/KDFs/pull/154
27+
[#155]: https://github.com/RustCrypto/KDFs/pull/155
2028
[#173]: https://github.com/RustCrypto/KDFs/pull/173
2129

2230
## 0.12.3 (2022-02-17)

hkdf/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hkdf"
3-
version = "0.13.0-rc.6"
3+
version = "0.13.0"
44
authors = ["RustCrypto Developers"]
55
license = "MIT OR Apache-2.0"
66
homepage = "https://github.com/RustCrypto/KDFs/"

0 commit comments

Comments
 (0)