We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9606b3 commit 5579efaCopy full SHA for 5579efa
crates/sigstore-trust-root/src/trusted_root.rs
@@ -325,7 +325,8 @@ impl TrustedRoot {
325
let chain_len = tsa.cert_chain.certificates.len();
326
if chain_len > 2 {
327
for cert_entry in &tsa.cert_chain.certificates[1..chain_len - 1] {
328
- intermediates.push(CertificateDer::from(cert_entry.raw_bytes.as_bytes()).into_owned());
+ intermediates
329
+ .push(CertificateDer::from(cert_entry.raw_bytes.as_bytes()).into_owned());
330
}
331
332
0 commit comments