sev_guest_device/
lib.rs

1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4//! The crate includes the abstraction layer of Linux SEV-SNP Guest APIs and
5//! definitions of data structures according to SEV-SNP specification.
6
7pub mod protocol;
8
9#[cfg(target_os = "linux")]
10pub mod ioctl;