-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Investigate top-level evidence format options #27
Comments
EAT
The EAT claims-set could be composed as follows: {
"eat_profile": "tag:github.com,2025:veraison/ratsd",
"eat_nonce": "MIDBNH28iioisjPy",
"iss": "ratsd",
"exp": 1300819380
"cmw": {
"sub-attester A": [
"application/...",
"base64encoded"
],
"sub-attester B": [
"application/...",
"base64encoded"
]
},
} The verification key material would go in the JWT/CWT header, either self-contained, using the {
"x5c": [
"MIIDqjCCApKgAwIBAgIESLNEvDA...",
"MIICwzCCAasCCQCKVy9eKjvi+jA...",
"MIIDTDCCAjSgAwIBAgIJAPlnQYH..."
],
"alg": "RS256"
} or using a {
"kid": "1234567890",
"alg": "RS256"
} Notes
|
Signed CMW
The CMW would be composed as follows: {
"__cmwc_t": "tag:github.com,2025:veraison/ratsd",
"sub-attester A": [
"application/...",
"base64encoded"
],
"sub-attester B": [
"application/...",
"base64encoded"
]
} The freshness indicator would be carried in the protected header using the {
"nonce": "base64urlencoded"
} The verification key material would go in the JWT/CWT header in the same way as done for the EAT. Notes
|
The available options are (at least):
cmw
claimDimensions to evaluate:
The text was updated successfully, but these errors were encountered: