Support Launch Measurement Corim (feature-gated)#122
Open
mingweishih wants to merge 11 commits into
Open
Conversation
Add the corim module that generates and validates CoRIM (Concise Reference Integrity Manifest) documents for IGVM launch endorsements per draft-ietf-rats-corim-10. The crate produces CBOR-encoded, tag-501-wrapped CoRIM documents containing: - A reference-values triple with the launch measurement digest - A conditional-endorsement-series triple mapping the digest to an exact SVN (microsoft#6.552) Supported platforms (via IgvmPlatformType): - Intel TDX (SHA-384, mkey "MRTD") - AMD SEV-SNP (SHA-384, mkey "MEASUREMENT") - Microsoft VBS (SHA-256, mkey "MEASUREMENT") Key design decisions: - Self-contained CBOR builder using ciborium::Value (no full corim crate dependency) - Strict profile enforcement: profile URI required, exactly one CoMID, CES required, only exact SVN, tag-id verified via UUIDv5 - Profile URI: tag:microsoft.com,2026:igvm-launch-endorsement/v1 Signed-off-by: Ming-Wei Shih <mishih@microsoft.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR builds on top of #99 and adds the support of generating Launch Measurement Corim that endorses the launch measurement and maps the measurement to SVN.
The PR also introduces
IgvmSeralizerthat allows the user to query the launch measurement computed based on IGVM file.