feat(corim): Support Launch Measurement CoRIM#122
Merged
Conversation
40eabf9 to
9a6b753
Compare
ca52554 to
90abf0a
Compare
5607bed to
f2d9bb2
Compare
Add the corim module that generates and validates CoRIM (Concise Reference Integrity Manifest) documents for launch measurement. 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: - 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:launch-measurement/v1 Signed-off-by: Ming-Wei Shih <mishih@microsoft.com>
chris-oo
approved these changes
Jun 9, 2026
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 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.For now, gate all of this functionality behind the corim feature.