From 6df6d087292768960f39ff8e78f234a7480d688b Mon Sep 17 00:00:00 2001 From: Arthur Gautier Date: Mon, 27 Nov 2023 19:43:10 -0800 Subject: [PATCH] v0.9.5 (#388) --- CHANGELOG.md | 6 ++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 14b3656..8fbc80d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,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.9.5 (2023-11-27) +### Added +- Adds `RsaPrivateKey::from_primes` and `RsaPrivateKey::from_p_q` methods ([#386]) + +[#386]: https://github.com/RustCrypto/RSA/pull/386 + ## 0.9.4 (2023-11-20) ### Added - Deterministic implementation of prime factors recovery ([#380]) diff --git a/Cargo.lock b/Cargo.lock index 71674ae..54a1049 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -465,7 +465,7 @@ checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" [[package]] name = "rsa" -version = "0.9.4" +version = "0.9.5" dependencies = [ "base64ct", "const-oid", diff --git a/Cargo.toml b/Cargo.toml index 64b2610..13ceb3c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rsa" -version = "0.9.4" +version = "0.9.5" authors = ["RustCrypto Developers", "dignifiedquire "] edition = "2021" description = "Pure Rust RSA implementation"