Skip to content

Commit

Permalink
fix arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
howardjohn committed Feb 26, 2024
1 parent ab7adb2 commit 6d16bce
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tls/csr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ impl CsrOptions {
let pkey_pem = pkey.private_key_to_pem_pkcs8()?;
let csr_pem = csr.to_pem()?;
let csr_pem = std::str::from_utf8(&csr_pem)
.expect("CSR is valid string")?
.expect("CSR is valid string")
.to_string();
Ok(CertSign {
csr: csr_pem,
Expand Down

0 comments on commit 6d16bce

Please sign in to comment.