From a5f83a76ea21374ceb3751c971c6ec5fa3b5450b Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Tue, 4 Jun 2024 14:52:22 -0600 Subject: [PATCH] ml-kem v0.1.1 (#28) --- Cargo.lock | 2 +- ml-kem/CHANGELOG.md | 6 ++++++ ml-kem/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index dddf0e4..a3c5368 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -343,7 +343,7 @@ checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149" [[package]] name = "ml-kem" -version = "0.1.0" +version = "0.1.1" dependencies = [ "criterion", "crypto-common", diff --git a/ml-kem/CHANGELOG.md b/ml-kem/CHANGELOG.md index fbaed54..e2e78f9 100644 --- a/ml-kem/CHANGELOG.md +++ b/ml-kem/CHANGELOG.md @@ -5,6 +5,12 @@ 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.1.1 (2024-06-04) +### Security +- Fix potential "Kyberslash" attack ([#18]) + +[#18]: https://github.com/RustCrypto/KEMs/pull/18 + ## 0.1.0 (2024-04-12) - Initial release diff --git a/ml-kem/Cargo.toml b/ml-kem/Cargo.toml index 2384ac3..6d27c9e 100644 --- a/ml-kem/Cargo.toml +++ b/ml-kem/Cargo.toml @@ -4,7 +4,7 @@ description = """ Pure Rust implementation of the Module-Lattice-Based Key-Encapsulation Mechanism Standard (formerly known as Kyber) as described in the FIPS 203 Initial Public Draft """ -version = "0.1.0" +version = "0.1.1" edition = "2021" rust-version = "1.74" license = "Apache-2.0 OR MIT"