-
-
Notifications
You must be signed in to change notification settings - Fork 81
[WIP] v1.7 - Cryptography WG #543
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
Changes from 1 commit
8ece7fb
a956767
24167b6
8ec130d
eae8ebd
3c44100
bff02b3
a28884d
c9893f7
949528a
2b6213e
d8fa000
d1a6fd8
149bcd2
e10e5f9
d34559f
5d8b070
3ad4a67
cb54c0c
21ceeba
ab272a9
4749fe3
5abddc3
6256ecd
6b87143
da8a80f
4580aae
cebf845
787ee04
7dd94a1
611ff64
fd99b05
e62e441
ed3136f
bc631aa
1c34746
d0fb871
b246f57
90307f0
b3e41f8
7ed08e9
0f6e8f1
fcc7a44
3f4e31b
3bf8464
377d3d5
7bb67fa
8c6bb28
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5442,6 +5442,11 @@ | |
| "revoked": "A revoked certificate is a digital certificate that has been invalidated by the issuing certificate authority (CA) before its scheduled expiration date.", | ||
| "destroyed": "The certificate has been destroyed." | ||
| }, | ||
| }, | ||
| "reason": { | ||
| "type": "string", | ||
| "title": "Reason", | ||
| "description": "A reason for the certificate being in this state." | ||
| } | ||
| } | ||
| }, | ||
|
|
@@ -5450,15 +5455,20 @@ | |
| "required": ["name"], | ||
| "additionalProperties": false, | ||
| "properties": { | ||
| "name": { | ||
| "state": { | ||
| "type": "string", | ||
| "title": "Name", | ||
| "description": "The name of the certificate lifecycle state" | ||
| "title": "State", | ||
| "description": "The name of the certificate lifecycle state." | ||
| }, | ||
| "description": { | ||
| "type": "string", | ||
| "title": "Description", | ||
| "description": "The description of the certificate lifecycle state" | ||
| "description": "The description of the certificate lifecycle state." | ||
| }, | ||
| "reason": { | ||
| "type": "string", | ||
| "title": "Reason", | ||
| "description": "A reason for the certificate being in this state." | ||
| } | ||
| } | ||
| } | ||
|
|
@@ -5512,7 +5522,7 @@ | |
| "name": { | ||
| "type": "string", | ||
| "title": "name", | ||
| "description": "Extention name", | ||
| "description": "The name if the extention.", | ||
| "enum": [ | ||
| "basicConstraints", | ||
| "keyUsage", | ||
|
|
@@ -5541,7 +5551,7 @@ | |
| "value": { | ||
| "type": "string", | ||
| "title": "Value", | ||
| "description": "" | ||
| "description": "The value of the certificate extension." | ||
| } | ||
| } | ||
| }, | ||
|
|
@@ -5553,12 +5563,12 @@ | |
| "name": { | ||
| "type": "string", | ||
| "title": "Name", | ||
| "description": "" | ||
| "description": "The name for the custom certificate extension." | ||
| }, | ||
| "value": { | ||
| "type": "string", | ||
| "title": "Value", | ||
| "description": "" | ||
| "description": "The description of the custom certificate extension." | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. is this "description" correct? Should this be "value" instead? |
||
| } | ||
| } | ||
| } | ||
|
|
@@ -5568,7 +5578,7 @@ | |
| "relatedCryptographicAssets": { | ||
| "$ref": "#/definitions/relatedCryptographicAssets", | ||
| "title": "Related Cryptographic Assets", | ||
| "description": "A list of bom-refs to cryptographic assets related to this protocol.", | ||
| "description": "A list of cryptographic assets related to this component.", | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do we need to add bom-ref to the description if that's the requirement? |
||
| }, | ||
| } | ||
| }, | ||
|
|
@@ -5703,7 +5713,7 @@ | |
| "relatedCryptographicAssets": { | ||
| "$ref": "#/definitions/relatedCryptographicAssets", | ||
| "title": "Related Cryptographic Assets", | ||
| "description": "A list of bom-refs to cryptographic assets related to this protocol.", | ||
| "description": "A list of cryptographic assets related to this component.", | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same as above |
||
| }, | ||
| } | ||
| }, | ||
|
|
@@ -5804,7 +5814,7 @@ | |
| "relatedCryptographicAssets": { | ||
| "$ref": "#/definitions/relatedCryptographicAssets", | ||
| "title": "Related Cryptographic Assets", | ||
| "description": "A list of bom-refs to cryptographic assets related to this protocol.", | ||
| "description": "A list of cryptographic assets related to this component.", | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same as above |
||
| }, | ||
| } | ||
| }, | ||
|
|
@@ -5863,9 +5873,18 @@ | |
| } | ||
| }, | ||
| "relatedCryptographicAssets": { | ||
| "type": "object", | ||
| "type": "array", | ||
| "title": "Related Cryptographic Assets", | ||
| "description": "A list of bom-refs to cryptographic assets related to this protocol.", | ||
| "description": "A list of cryptographic assets related to this component.", | ||
| "items": { | ||
| "$ref": "#/definitions/relatedCryptographicAsset", | ||
| "title": "Related Cryptographic Asset" | ||
| } | ||
| }, | ||
| "relatedCryptographicAsset": { | ||
| "type": "object", | ||
| "title": "Related Cryptographic Asset", | ||
| "description": "A cryptographic assets related to this component.", | ||
| "additionalProperties": false, | ||
| "properties": { | ||
| "type": { | ||
|
|
@@ -5880,8 +5899,8 @@ | |
| }, | ||
| "ref": { | ||
| "$ref": "#/definitions/refType", | ||
| "title": "Algorithm Reference", | ||
| "description": "The bom-ref to the algorithm." | ||
| "title": "Reference to cryptographic asset", | ||
| "description": "The bom-ref to cryptographic asset." | ||
| } | ||
| } | ||
| }, | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
change 'if' to 'of'