blob: 4e8c3210b4c7de59935f4e97af1dbef2655da868 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
# Changelog
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.12.3 (2022-02-17)
### Fixed
- Minimal versions build ([#63])
[#63]: https://github.com/RustCrypto/KDFs/pull/63
## 0.12.2 (2022-01-27)
### Fixed
- Re-export `InvalidLength` and `InvalidPrkLength` ([#59])
[#59]: https://github.com/RustCrypto/KDFs/pull/59
## 0.12.1 (2022-01-27) [YANKED]
### Added
- Ability to switch HMAC implementation to `SimpleHmac` with respective `SimpleHkdfExtract` and `SimpleHkdf` aliases ([#57])
[#57]: https://github.com/RustCrypto/KDFs/pull/55
## 0.12.0 (2021-12-07)
### Changed
- Bump `hmac` crate dependency to v0.12 and `digest` to v0.10 ([#52])
[#52]: https://github.com/RustCrypto/KDFs/pull/52
## 0.11.0 (2021-04-29)
### Added
- Wycheproof HKDF test vectors ([#49])
### Changed
- Bump `hmac` crate dependency to v0.11 ([#50])
### Fixed
- HKDF-Extract with empty salt ([#46])
[#46]: https://github.com/RustCrypto/KDFs/pull/46
[#49]: https://github.com/RustCrypto/KDFs/pull/49
[#50]: https://github.com/RustCrypto/KDFs/pull/50
## 0.10.0 (2020-10-26)
### Changed
- Bump `hmac` dependency to v0.10 ([#40])
[#40]: https://github.com/RustCrypto/KDFs/pull/40
## 0.9.0 (2020-06-22)
### Added
- Multipart features for HKDF-Extract and HKDF-Expand ([#34])
### Changed
- Bump `digest` v0.9; `hmac` v0.9 ([#35])
[#34]: https://github.com/RustCrypto/KDFs/pull/34
[#35]: https://github.com/RustCrypto/KDFs/pull/35
## 0.8.0 (2019-07-26)
### Added
- `Hkdf::from_prk()`, `Hkdf::extract()`
## 0.7.1 (2019-07-15)
## 0.7.0 (2018-10-16)
### Changed
- Update digest to 0.8
- Refactor for API changes
### Removed
- Redundant `generic-array` crate.
## 0.6.0 (2018-08-20)
### Changed
- The `expand` signature has changed.
### Removed
- `std` requirement
## 0.5.0 (2018-05-20)
### Fixed
- Omitting HKDF salt.
### Removed
- Deprecated interface
## 0.4.0 (2018-03-20
### Added
- Benchmarks
- derive `Clone`
### Changed
- RFC-inspired interface
- Reduce heap allocation
- Bump deps: hex-0.3
### Removed
- Unnecessary mut
## 0.3.0 (2017-11-29)
### Changed
- update dependencies: digest-0.7, hmac-0.5
## 0.2.0 (2017-09-21)
### Fixed
- Support for rustc 1.20.0
## 0.1.2 (2017-09-21)
### Fixed
- Support for rustc 1.5.0
## 0.1.0 (2017-09-21)
- Initial release
|