igvmfilegen/signed_measurement/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

//! Creates a digest for supported isolation types which can be signed externally.

pub mod snp;
pub mod tdx;
pub mod vbs;

pub use snp::generate_snp_measurement;
pub use tdx::generate_tdx_measurement;
pub use vbs::generate_vbs_measurement;

const SHA_256_OUTPUT_SIZE_BYTES: usize = 32;
const SHA_384_OUTPUT_SIZE_BYTES: usize = 48;