Skip to content

Commit 32f662a

Browse files
committed
Bump openssl from 0.10.55 to 0.10.62
1 parent 7236109 commit 32f662a

File tree

3 files changed

+9
-10
lines changed

3 files changed

+9
-10
lines changed

Cargo.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

stdlib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ termios = "0.3.3"
9696
gethostname = "0.2.3"
9797
socket2 = { version = "0.4.4", features = ["all"] }
9898
dns-lookup = "1.0.8"
99-
openssl = { version = "0.10.55", optional = true }
99+
openssl = { version = "0.10.62", optional = true }
100100
openssl-sys = { version = "0.9.80", optional = true }
101101
openssl-probe = { version = "0.1.5", optional = true }
102102
foreign-types-shared = { version = "0.1.1", optional = true }

stdlib/src/ssl.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -703,9 +703,8 @@ mod _ssl {
703703
let certs = self
704704
.ctx()
705705
.cert_store()
706-
.objects()
706+
.all_certificates()
707707
.iter()
708-
.filter_map(|obj| obj.x509())
709708
.map(|cert| cert_to_py(vm, cert, binary_form))
710709
.collect::<Result<Vec<_>, _>>()?;
711710
Ok(certs)

0 commit comments

Comments
 (0)