From 92ccfd48cdb75f6ace4083507792c80345f9fd08 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sun, 28 Dec 2025 13:09:31 -0700 Subject: [PATCH] ctutils v0.2.2 --- Cargo.lock | 2 +- ctutils/CHANGELOG.md | 16 ++++++++++++++++ ctutils/Cargo.toml | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ea60d9aa..aa9426c3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -108,7 +108,7 @@ dependencies = [ [[package]] name = "ctutils" -version = "0.2.1" +version = "0.2.2" dependencies = [ "cmov", "subtle", diff --git a/ctutils/CHANGELOG.md b/ctutils/CHANGELOG.md index 38c64322..0be1bdc4 100644 --- a/ctutils/CHANGELOG.md +++ b/ctutils/CHANGELOG.md @@ -4,6 +4,22 @@ 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.2.2 (2025-12-28) +### Added +- Unsigned `CtNeg` impls ([#1306]) + +[#1306]: https://github.com/RustCrypto/utils/pull/1306 + +## 0.2.1 (2025-12-27) +### Added +- Enhanced `subtle` interop ([#1289]) + +### Security +- Pin to `cmov` v0.4.3+ - includes important security fixes ([#1304]) + +[#1289]: https://github.com/RustCrypto/utils/pull/1304 +[#1304]: https://github.com/RustCrypto/utils/pull/1304 + ## 0.2.0 (2025-12-27) ### Added - Additional `Choice::from_u128*` constructors ([#1285]) diff --git a/ctutils/Cargo.toml b/ctutils/Cargo.toml index f5672ef6..040a95c2 100644 --- a/ctutils/Cargo.toml +++ b/ctutils/Cargo.toml @@ -5,7 +5,7 @@ Constant-time utility library with selection and equality testing support target applications. Supports `const fn` where appropriate. Built on the `cmov` crate which provides architecture-specific predication intrinsics. Heavily inspired by the `subtle` crate. """ -version = "0.2.1" +version = "0.2.2" authors = ["RustCrypto Developers"] license = "Apache-2.0 OR MIT" homepage = "https://github.com/RustCrypto/utils/tree/master/ctselect"