aegis-hwsim 0.1.1

QEMU+OVMF+swtpm hardware-persona matrix harness for aegis-boot signed-chain testing
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Concrete scenarios. Each module here implements
//! [`crate::scenario::Scenario`] for one well-defined boot-flow assertion.

pub mod attestation_roundtrip;
pub mod common;
pub mod kexec_refuses_unsigned;
pub mod mok_enroll_alpine;
pub mod qemu_boots_ovmf;
pub mod signed_boot_ubuntu;

pub use attestation_roundtrip::AttestationRoundtrip;
pub use kexec_refuses_unsigned::KexecRefusesUnsigned;
pub use mok_enroll_alpine::MokEnrollAlpine;
pub use qemu_boots_ovmf::QemuBootsOvmf;
pub use signed_boot_ubuntu::SignedBootUbuntu;