Added
 - expose a `pss::get_default_pss_signature_algo_id` helper ([#393])
 - expose `pkcs1v15::RsaSignatureAssociatedOid` ([#392])
This commit is contained in:
Arthur Gautier 2023-12-01 10:36:48 -08:00 committed by GitHub
parent a2ed9dd3c0
commit a801f53a77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 2 deletions

View File

@ -4,6 +4,14 @@ 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/), 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). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## 0.9.6 (2023-12-01)
### Added
- expose a `pss::get_default_pss_signature_algo_id` helper ([#393])
- expose `pkcs1v15::RsaSignatureAssociatedOid` ([#392])
[#392]: https://github.com/RustCrypto/RSA/pull/392
[#393]: https://github.com/RustCrypto/RSA/pull/393
## 0.9.5 (2023-11-27) ## 0.9.5 (2023-11-27)
### Added ### Added
- Adds `RsaPrivateKey::from_primes` and `RsaPrivateKey::from_p_q` methods ([#386]) - Adds `RsaPrivateKey::from_primes` and `RsaPrivateKey::from_p_q` methods ([#386])

2
Cargo.lock generated
View File

@ -465,7 +465,7 @@ checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
[[package]] [[package]]
name = "rsa" name = "rsa"
version = "0.9.5" version = "0.9.6"
dependencies = [ dependencies = [
"base64ct", "base64ct",
"const-oid", "const-oid",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "rsa" name = "rsa"
version = "0.9.5" version = "0.9.6"
authors = ["RustCrypto Developers", "dignifiedquire <dignifiedquire@gmail.com>"] authors = ["RustCrypto Developers", "dignifiedquire <dignifiedquire@gmail.com>"]
edition = "2021" edition = "2021"
description = "Pure Rust RSA implementation" description = "Pure Rust RSA implementation"