From f62e9610f968aebb0d231f92049cf645ffb3a891 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Fri, 5 Jan 2024 21:11:56 -0800 Subject: [PATCH] bign256 v0.13.1 (#1006) --- Cargo.lock | 2 +- bign256/CHANGELOG.md | 6 ++++++ bign256/Cargo.toml | 5 ++--- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8d0de2f2..9d733553 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -50,7 +50,7 @@ dependencies = [ [[package]] name = "bign256" -version = "0.13.0" +version = "0.13.1" dependencies = [ "belt-hash", "criterion", diff --git a/bign256/CHANGELOG.md b/bign256/CHANGELOG.md index d727ca96..b41428b2 100644 --- a/bign256/CHANGELOG.md +++ b/bign256/CHANGELOG.md @@ -4,5 +4,11 @@ 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.13.1 (2024-01-05) +### Added +- Digital signature algorithm ([#935]) + +[#935]: https://github.com/RustCrypto/elliptic-curves/pull/935 + ## 0.13.0 (2023-06-27) - Initial release diff --git a/bign256/Cargo.toml b/bign256/Cargo.toml index 1fe6bf1c..5d5b3a14 100644 --- a/bign256/Cargo.toml +++ b/bign256/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bign256" -version = "0.13.0" +version = "0.13.1" description = """ Pure Rust implementation of the Bign P-256 (a.k.a. bign-curve256v1) elliptic curve as defined in STB 34.101.45-2013, with @@ -31,8 +31,7 @@ criterion = "0.5" hex-literal = "0.4" proptest = "1" rand_core = { version = "0.6", features = ["getrandom"] } -hex = {version = "*" } - +hex = {version = "0.4" } [features] default = ["arithmetic", "pkcs8", "std", "dsa"]