Skip to content

Lib for generate and verify DCAP SGX Report received from Occlum

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT
Notifications You must be signed in to change notification settings

aggregion/occlum-sgx-quote

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Occlum SGX Lib

Implementation for generating and verifying SGX DCAP quotes for Occlum

Docs: https://docs.rs/occlum-sgx/

Install

Run the following Cargo command in your project directory:

cargo add occlum-sgx

Or add the following line to your Cargo.toml:

occlum-sgx = "0.1"

Requirements

  • SGX Server
  • PCCS
  • The app should be run as an occlum instance in HW sgx mode
  • Occlum's configuration should contain mount devfs.

Usage

use occlum_sgx::SGXQuote;

fn main() -> Result<(), Box<dyn std::error::Error>> {
    // Generate SGX Quote from report data
    let quote: SGXQuote = [0u8; 64].try_into()?;
    // Check the quote, it's just for reference
    quote.verify()?;

    let mrenclave = quote.mrenclave();
    let mrsigner = quote.mrsigner();
    let product_id = quote.product_id();
    let version = quote.version();

    println!("MrEnclave:\t{}", mrenclave);
    println!("MrSigner:\t{}", mrsigner);
    println!("ProdID:\t{}", product_id);
    println!("Version:\t{}", version);

    println!("\n{:#?}", quote);

    Ok(())
}

About

Lib for generate and verify DCAP SGX Report received from Occlum

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages