From a08eda20d9e3714805a4adc7f4469927a110769d Mon Sep 17 00:00:00 2001 From: xevisalle Date: Wed, 18 Dec 2024 13:57:51 +0100 Subject: [PATCH] core: Fix dependencies --- core/CHANGELOG.md | 6 +++++- core/Cargo.toml | 4 ++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/core/CHANGELOG.md b/core/CHANGELOG.md index 510936b..f4db5af 100644 --- a/core/CHANGELOG.md +++ b/core/CHANGELOG.md @@ -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 @@ -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 @@ -403,6 +406,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Canonical implementation shielded by feature. +[#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 diff --git a/core/Cargo.toml b/core/Cargo.toml index 2fc930c..a877ebe 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -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]