Skip to content

Commit

Permalink
Fix build by correcting the module path
Browse files Browse the repository at this point in the history
Fixes: #59

Signed-off-by: Amulyam24 <amulmek1@in.ibm.com>
  • Loading branch information
Amulyam24 authored and fitzthum committed Aug 17, 2023
1 parent c76b135 commit cfe06d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sev_tools.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pub fn generate_launch_bundle(
let session = Session::try_from(Policy::from(policy)).unwrap();

let mut bin_chain = std::io::Cursor::new(base64::decode(cert_chain)?);
let chain = sev::certs::Chain::decode(&mut bin_chain, ())
let chain = sev::certs::sev::Chain::decode(&mut bin_chain, ())
.map_err(|e| anyhow!("Cert Chain not formatted correctly: {}", e))?;

let start = session
Expand Down

0 comments on commit cfe06d7

Please sign in to comment.