From 932cf664f4743625c74e60518d872d542fcbe4d1 Mon Sep 17 00:00:00 2001 From: Camille Mougey Date: Mon, 2 Oct 2023 10:37:49 +0200 Subject: [PATCH] MLA: force x25519-dalek's static_secrets feature --- mla/CHANGELOG.md | 2 +- mla/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mla/CHANGELOG.md b/mla/CHANGELOG.md index a4422ee5..147881d2 100644 --- a/mla/CHANGELOG.md +++ b/mla/CHANGELOG.md @@ -12,7 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Code cleaning - Bump dependencies - Benchmarking: reduce the number of test case per test, add new scenarios -- Explicitely ask for `zeroize` feature in `x25519-dalek` +- Explicitely ask for `zeroize` and `static_secrets` feature in `x25519-dalek` ### Fixed diff --git a/mla/Cargo.toml b/mla/Cargo.toml index 2fe01ac7..11d40b55 100644 --- a/mla/Cargo.toml +++ b/mla/Cargo.toml @@ -28,7 +28,7 @@ ctr = { version = "0.9", default-features = false} subtle = { version = "2", default-features = false} digest = { version = "0", default-features = false} # ECC -x25519-dalek = { version = "2", default-features = false, features = ["zeroize"]} +x25519-dalek = { version = "2", default-features = false, features = ["zeroize", "static_secrets"]} hkdf = { version = "0", default-features = false} sha2 = { version = "0", default-features = false} zeroize = { version = "1", default-features = false}