1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-License-Identifier: Apache-2.0

//! Modules for interfacing with SEV firmware.
//! Rust-friendly API wrappers to communicate with the FFI functions.

#[cfg(any(feature = "sev", feature = "snp"))]
pub mod host;

#[cfg(feature = "snp")]
pub mod guest;

#[cfg(any(feature = "sev", feature = "snp"))]
pub(crate) mod linux;