sallyport 0.6.3

API for the Enarx hypervisor-microkernel boundary
Documentation
// SPDX-License-Identifier: Apache-2.0

//! Enarx call-specific functionality.

mod alloc;
mod cpuid;
mod get_sgx_quote;
mod get_sgx_target_info;
mod get_snp_vcek;
mod passthrough;

pub mod types;

pub use alloc::*;
pub use cpuid::*;
pub use get_sgx_quote::*;
pub use get_sgx_target_info::*;
pub use get_snp_vcek::*;
pub use passthrough::*;