Skip to content

Commit

Permalink
core: Fix dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
xevisalle committed Dec 18, 2024
1 parent bd24cd3 commit a08eda2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed

- Compute AES key using HKDF [#261]

## [0.32.1] - 2024-12-17

### Added
Expand All @@ -21,7 +25,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Call `gen_note_sk` in `SecretKey::owns` to avoid code duplication [#246]
- `ViewKey` now checks both `a` and `B` in `ct_eq()`
- Compute AES key using HKDF

### Removed

Expand Down Expand Up @@ -403,6 +406,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Canonical implementation shielded by feature.

<!-- ISSUES -->
[#261]: https://github.com/dusk-network/phoenix/issues/261
[#258]: https://github.com/dusk-network/phoenix/issues/258
[#255]: https://github.com/dusk-network/phoenix/issues/255
[#240]: https://github.com/dusk-network/phoenix/issues/240
Expand Down
4 changes: 2 additions & 2 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ bs58 = { version = "0.4" , optional = true }
base64 = { version = "0.22", optional = true }
serde_json = { version = "1.0", optional = true }
hex = { version = "0.4" , optional = true }
hkdf = "0.12.4"
sha2 = "0.10.8"
hkdf = "0.12"
sha2 = "0.10"
hex-literal = "0.4"

[dev-dependencies]
Expand Down

0 comments on commit a08eda2

Please sign in to comment.