Skip to content

Commit

Permalink
Merge branch 'main' into wasm-time
Browse files Browse the repository at this point in the history
  • Loading branch information
DanGould authored Feb 27, 2024
2 parents 569f8d9 + ffc074a commit b898889
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rustls-pki-types"
version = "1.3.0"
version = "1.3.1"
edition = "2021"
rust-version = "1.60"
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ impl<'a> From<Vec<u8>> for PrivateSec1KeyDer<'a> {

impl fmt::Debug for PrivateSec1KeyDer<'_> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_tuple("PrivatePkcs1KeyDer")
f.debug_tuple("PrivateSec1KeyDer")
.field(&"[secret key elided]")
.finish()
}
Expand Down Expand Up @@ -249,7 +249,7 @@ impl<'a> From<Vec<u8>> for PrivatePkcs8KeyDer<'a> {

impl fmt::Debug for PrivatePkcs8KeyDer<'_> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_tuple("PrivatePkcs1KeyDer")
f.debug_tuple("PrivatePkcs8KeyDer")
.field(&"[secret key elided]")
.finish()
}
Expand Down

0 comments on commit b898889

Please sign in to comment.