Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,24 +29,8 @@
"key_hsm": "CxX3qVTt22ZvjwdS-fmMSsLpaQQ8IcfGAC2TYWo3FXIPnOrSmZWdWN3gLMNSLUtUOhXqwXCe6jOxH2jMr6suO4Q0mfrKurAB-IC5gbDZGGD9XksrAkyYS-0p4p4I4Q4QxEOCtCKYPYWWu91dg5xg5aYjVRyR5G3C6O0haotp1FL1FiOB1PVcW9HchDIdHMFCszsb33pbvDuYvJXPPqdSIGIT8P8ExVG9_RwYTZl2Kj3MTSbe9zjOEEW-EnA6Phr0EFO0h94dWK0Y2tPhyzGYOSBScJCWIdwD9lT1aaHNFE0rSLJ9wv0qGezR10nD7V7ALZiEscsrAcwrWTtmmCJMAIJpGf0u9rN1_JQiXuO4Q9Cf4b73nSP1kIIAPkZ3r6Fqmrm8F7NeKis"
},
"release_policy": {
"anyOf": [
{
"allOf": [
{
"claim": "sgx-mrsigner",
"condition": "equals",
"value": "86788fe40448f2a12e20bf8d5e7a1c3139bc5fdc1432b370c1da3489ab649a85"
},
{
"claim": "is-debuggable",
"condition": "equals",
"value": "false"
}
],
"authority": "http://localhost:8023/"
}
],
"version": "0.2"
"contentType": "application/json; charset=utf-8; version=1.0",
"data": "eyJhbnlPZiI6W3siYWxsT2YiOlt7ImNsYWltIjoic2d4LW1yc2lnbmVyIiwiY29uZGl0aW9uIjoiZXF1YWxzIiwidmFsdWUiOiI4Njc4OGZlNDA0NDhmMmExMmUyMGJmOGQ1ZTdhMWMzMTM5YmM1ZmRjMTQzMmIzNzBjMWRhMzQ4OWFiNjQ5YTg1In0seyJjbGFpbSI6ImlzLWRlYnVnZ2FibGUiLCJjb25kaXRpb24iOiJlcXVhbHMiLCJ2YWx1ZSI6ImZhbHNlIn1dLCJhdXRob3JpdHkiOiJodHRwOi8vbG9jYWxob3N0OjgwMjMvIn1dfQ"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1033,83 +1033,6 @@
}
},
"definitions": {
"KeyReleaseCondition": {
"properties": {
"claim": {
"x-ms-client-name": "claimType",
"type": "string",
"minLength": 1,
"description": "claim type name"
},
"condition": {
"x-ms-client-name": "claimCondition",
"type": "string",
"minLength": 1,
"description": "condition to test",
"enum": [
"equals"
],
"x-ms-enum": {
"name": "KeyReleaseConditionCondition",
"modelAsString": true,
"values": [
{
"value": "equals",
"description": "equals comparison."
}
]
}
},
"value": {
"type": "string"
}
}
},
"KeyReleaseAuthority": {
"properties": {
"authority": {
"x-ms-client-name": "authorityURL",
"type": "string",
"minLength": 1,
"description": "Base URL of the attestation service."
},
"allOf": {
"type": "array",
"items": {
"$ref": "#/definitions/KeyReleaseCondition",
"description": "The set of claim conditions that must be met."
}
}
}
},
"KeyReleasePolicy": {
"properties": {
"version": {
"description": "key release policy version",
"type": "string",
"enum": [
"0.2"
],
"x-ms-enum": {
"name": "KeyReleasePolicyVersion",
"modelAsString": true,
"values": [
{
"value": "0.2",
"description": "Schema version 0.2"
}
]
}
},
"anyOf": {
"type": "array",
"items": {
"$ref": "#/definitions/KeyReleaseAuthority",
"description": "Authorities."
}
}
}
},
"JsonWebKey": {
"properties": {
"kid": {
Expand Down Expand Up @@ -1387,6 +1310,20 @@
},
"description": "The key item containing key metadata."
},
"KeyReleasePolicy": {
"properties": {
"contentType": {
"description": "Content type and version of key release policy",
"type": "string",
"default": "application/json; charset=utf-8; version=1.0"
},
"data": {
"description": "Blob encoding the policy rules under which the key can be exported.",
"type": "string",
"format": "base64url"
}
}
},
"DeletedKeyBundle": {
"allOf": [
{
Expand Down