From 158b65ce54ed6d0d031a9414890b4a9170dd4f11 Mon Sep 17 00:00:00 2001 From: Denis Varlakov Date: Mon, 25 Nov 2024 12:53:18 +0100 Subject: [PATCH] Update changelog Signed-off-by: Denis Varlakov --- CHANGELOG.md | 8 ++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 25ea7f9..04d73e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # hd-wallet crate changelog +## v0.6.0 +* Remove slip10-like derivation that can be instantiated with any curve: it is very inefficient + when instantiated with certain curves, and may also enable attacker to perform DoS attack by + finding derivation path that results into very long computation [#14] +* Add stark-specific derivation: secure and efficient derivation for stark curve [#14] + +[#14]: https://github.com/LFDT-Lockness/hd-wallet/pull/14 + ## v0.5.1 * Update docs and repo link [#11] diff --git a/Cargo.lock b/Cargo.lock index 349cae9..75c3df4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -351,7 +351,7 @@ dependencies = [ [[package]] name = "hd-wallet" -version = "0.5.1" +version = "0.6.0" dependencies = [ "generic-array", "generic-ec", diff --git a/Cargo.toml b/Cargo.toml index f4c7217..71bc57b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hd-wallet" -version = "0.5.1" +version = "0.6.0" edition = "2021" license = "MIT OR Apache-2.0" description = "HD wallets derivation"