Skip to content

Commit fb6fa9d

Browse files
committed
pkcs8 v0.5.3
1 parent 1a39ed5 commit fb6fa9d

File tree

4 files changed

+16
-5
lines changed

4 files changed

+16
-5
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkcs8/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## 0.5.3 (2021-02-23)
8+
### Added
9+
- Support for decrypting/encrypting `EncryptedPrivateKeyInfo` ([#293, #302])
10+
- PEM support for `EncryptedPrivateKeyInfo` ([#301])
11+
- `Error::Crypto` variant ([#305])
12+
13+
[#293]: https://github.com/RustCrypto/utils/pull/293
14+
[#301]: https://github.com/RustCrypto/utils/pull/301
15+
[#302]: https://github.com/RustCrypto/utils/pull/302
16+
[#305]: https://github.com/RustCrypto/utils/pull/305
17+
718
## 0.5.2 (2021-02-20)
819
### Changed
920
- Use `pkcs5` crate ([#290])

pkcs8/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pkcs8"
3-
version = "0.5.2" # Also update html_root_url in lib.rs when bumping this
3+
version = "0.5.3" # Also update html_root_url in lib.rs when bumping this
44
description = """
55
Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #8:
66
Private-Key Information Syntax Specification (RFC 5208)
@@ -10,7 +10,7 @@ license = "Apache-2.0 OR MIT"
1010
edition = "2018"
1111
repository = "https://github.com/RustCrypto/utils/tree/master/pkcs8"
1212
categories = ["cryptography", "data-structures", "encoding", "no-std"]
13-
keywords = ["crypto", "key", "private"]
13+
keywords = ["crypto", "key", "pkcs", "private"]
1414
readme = "README.md"
1515

1616
[dependencies]
@@ -19,7 +19,7 @@ spki = { version = "0.2", path = "../spki" }
1919

2020
base64ct = { version = "0.2", optional = true, features = ["alloc"], path = "../base64ct" }
2121
rand_core = { version = "0.6", optional = true, default-features = false }
22-
pkcs5 = { version = "0.1", optional = true, path = "../pkcs5" }
22+
pkcs5 = { version = "0.1.1", optional = true, path = "../pkcs5" }
2323
zeroize = { version = "1", optional = true, default-features = false, features = ["alloc"] }
2424

2525
[dev-dependencies]

pkcs8/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
#![doc(
6060
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
6161
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
62-
html_root_url = "https://docs.rs/pkcs8/0.5.2"
62+
html_root_url = "https://docs.rs/pkcs8/0.5.3"
6363
)]
6464
#![forbid(unsafe_code)]
6565
#![warn(missing_docs, rust_2018_idioms)]

0 commit comments

Comments
 (0)