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 39d6cec commit bc08090Copy full SHA for bc08090
intel-sgx/dcap-artifact-retrieval/src/cli.rs
@@ -135,14 +135,14 @@ fn download_dcap_artifacts(
135
.and_then(|crl| crl.write_to_file_as(output_dir, DcapArtifactIssuer::PCKProcessorCA).map_err(|e| e.into()))?;
136
if verbose {
137
println!("==[ generic ]==");
138
- println!(" pckcrl: {}", pckcrl);
+ println!(" PCKProcessorCA Crl: {}", pckcrl);
139
}
140
141
let pckcrl = prov_client
142
.pckcrl(DcapArtifactIssuer::PCKPlatformCA)
143
.and_then(|crl| crl.write_to_file_as(output_dir, DcapArtifactIssuer::PCKPlatformCA).map_err(|e| e.into()))?;
144
145
+ println!(" PCKPlatformCA Crl: {}", pckcrl);
146
147
Ok(())
148
0 commit comments